CSES - Datatähti 2023 alku - Results
Submission details
Task:Ruudukko
Sender:qanpi
Submission time:2022-11-11 22:16:04 +0200
Language:C++ (C++11)
Status:READY
Result:28
Feedback
groupverdictscore
#1ACCEPTED28
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.00 s1, 2, 3details
#2ACCEPTED0.00 s1, 2, 3details
#3ACCEPTED0.00 s1, 2, 3details
#4ACCEPTED0.01 s2, 3details
#50.01 s2, 3details
#60.01 s2, 3details
#7ACCEPTED0.25 s3details
#8--3details
#9--3details

Code

#include<iostream>
//#include<chrono>
#include<algorithm>
using namespace std;
const int MOD = 1000000007;
int n;
int board[1001][1001];
pair<int, int> sorted_rows[1000][1000];
pair<int, int> sorted_cols[1000][1000];
int memo[1001][1001];
bool ready[1001][1001];
int recurse(int i, int y);
int recursive_calls = 0;
int main() {
cin.tie(0);
//freopen("grid1000.txt", "r", stdin);
//auto start = chrono::high_resolution_clock::now();
cin >> n;
for (int i=0; i<n; i++) {
for (int j=0; j<n; j++) {
int val;
cin >> val;
board[i][j] = val;
sorted_rows[i][j] = {val, j};
sorted_cols[j][i] = {val, i};
}
}
for(int i=0; i<n; i++) {
sort(sorted_rows[i], sorted_rows[i]+n);
sort(sorted_cols[i], sorted_cols[i]+n);
}
//for future, maybe somehow sort the rows and cols and go from there
int total_sum = 0;
for (int i=0; i<n; i++) {
for (int j=0; j<n; j++) {
if (ready[i][j]) total_sum += memo[i][j];
else total_sum += recurse(i, j);
total_sum %= MOD;
}
}
cout << total_sum << endl;
//cout << recursive_calls << endl;
//auto end = chrono::high_resolution_clock::now();
//auto duration = chrono::duration_cast<chrono::microseconds>(end-start);
//cout << duration.count() << endl;
}
int recurse(int i, int j) {
if (ready[i][j]) return memo[i][j];
int current = board[i][j];
int sum = 1;
pair<int, int> key = {current, 0};
//for (int k=0; k<n; k++) cout << sorted_cols[j][k].first << " ";
auto x_bound = lower_bound(sorted_cols[j], sorted_cols[j]+n, key) - sorted_cols[j];
auto y_bound = lower_bound(sorted_rows[i], sorted_rows[i]+n, key) - sorted_rows[i];
//cout << "bounds: " << current << " " << x_bound << " " << y_bound << endl;
for(int y=y_bound-1; y>=0; y--) {
int next_y = sorted_rows[i][y].second;
//cout << "next x move: " << current << " " << next_y << " " << j << endl;
sum += recurse(i, next_y);
}
for(int x=x_bound-1; x>=0; x--) {
int next_x = sorted_cols[j][x].second;
//cout << current << " " << i << " " << next_y << endl;
sum += recurse(next_x, j);
}
//cout << endl;
sum %= MOD;
memo[i][j] = sum;
ready[i][j] = true;
return sum;
}

Test details

Test 1

Group: 1, 2, 3

Verdict: ACCEPTED

input
3
1 1 1
1 1 1
1 1 1

correct output
9

user output
9

Test 2

Group: 1, 2, 3

Verdict: ACCEPTED

input
3
1 2 3
6 5 4
7 8 9

correct output
135

user output
135

Test 3

Group: 1, 2, 3

Verdict: ACCEPTED

input
3
7 8 1
4 5 4
3 9 6

correct output
57

user output
57

Test 4

Group: 2, 3

Verdict: ACCEPTED

input
100
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
10000

user output
10000

Test 5

Group: 2, 3

Verdict:

input
100
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

correct output
187458477

user output
-431455214

Test 6

Group: 2, 3

Verdict:

input
100
2995 8734 1018 2513 7971 5063 ...

correct output
964692694

user output
-96677657

Test 7

Group: 3

Verdict: ACCEPTED

input
1000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
1000000

user output
1000000

Test 8

Group: 3

Verdict:

input
1000
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

correct output
229147081

user output
(empty)

Test 9

Group: 3

Verdict:

input
1000
520283 805991 492643 75254 527...

correct output
951147313

user output
(empty)