CSES - Datatähti 2023 alku - Results
Submission details
Task:Ruudukko
Sender:qanpi
Submission time:2022-11-06 18:16:37 +0200
Language:C++11
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.00 s1, 2, 3details
#20.00 s1, 2, 3details
#30.00 s1, 2, 3details
#4ACCEPTED0.01 s2, 3details
#50.01 s2, 3details
#60.02 s2, 3details
#7ACCEPTED0.21 s3details
#8--3details
#9--3details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:22:14: warning: variable 'start' set but not used [-Wunused-but-set-variable]
   22 |         auto start = chrono::high_resolution_clock::now();
      |              ^~~~~

Code

#include<iostream>
#include<chrono>
#include<algorithm>

using namespace std;
const int MOD = 1000000007;

int board[1001][1001];
int memo[1001][1001];
bool ready[1001][1001];
int sorted_x[1001][1001];
int sorted_y[1001][1001];
int n;

int recurse(int x, int y); 
int total_sum = 0;
//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_x[i][j] = val;
			sorted_y[j][i] = val;
		}
	}

	for(int i=0; i<n; i++) {
		sort(sorted_x[i], sorted_x[i]+n);
		sort(sorted_y[i], sorted_y[i]+n);
	}

	//for future, maybe somehow sort the rows and cols and go from there
	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 x, int y) {
	if (ready[x][y]) {
		return memo[x][y];
	}

	int current = board[x][y];
	auto max_x_calls = lower_bound(sorted_x[x], sorted_x[x]+n, current) - sorted_x[x];
	auto max_y_calls = lower_bound(sorted_y[y], sorted_y[y]+n, current) - sorted_y[y];

	int x_calls = 0, y_calls = 0;
	int sum = 1;
	for (int i=0; i<n; i++) {
		if (y_calls > max_y_calls) break;
		if (current > board[i][y]) {
			sum += recurse(i, y);	
		}
		y_calls++;
	}

	for (int i=0; i<n; i++) {	
		if (x_calls > max_x_calls) break;
		if (current > board[x][i]) {
			sum += recurse(x, i);	
		}
		x_calls++;
	}

	sum %= MOD;
	memo[x][y] = sum;
	ready[x][y] = 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:

input
3
1 2 3
6 5 4
7 8 9

correct output
135

user output
95

Test 3

Group: 1, 2, 3

Verdict:

input
3
7 8 1
4 5 4
3 9 6

correct output
57

user output
46

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
142269387

Test 6

Group: 2, 3

Verdict:

input
100
2995 8734 1018 2513 7971 5063 ...

correct output
964692694

user output
-460414526

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)