CSES - Datatähti Open 2017 - Results
Submission details
Task:Grid
Sender:Lumibons
Submission time:2017-01-22 21:16:45 +0200
Language:C++
Status:READY
Result:35
Feedback
groupverdictscore
#1ACCEPTED35
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.04 s1details
#2ACCEPTED0.03 s1details
#3ACCEPTED0.03 s1details
#4ACCEPTED0.05 s1details
#5ACCEPTED0.04 s1details
#6ACCEPTED0.05 s1details
#7ACCEPTED0.06 s1details
#8ACCEPTED0.13 s1details
#9ACCEPTED0.55 s1details
#10ACCEPTED0.04 s2details
#11ACCEPTED0.04 s2details
#12--2details
#13--2details
#14--2details
#15--2details
#16ACCEPTED0.05 s3details
#17ACCEPTED0.04 s3details
#18--3details
#19--3details
#20--3details
#21--3details

Compiler report

input/code.cpp: In function 'void dis(int, int)':
input/code.cpp:40:13: warning: statement has no effect [-Wunused-value]
   for (pos[y]; pos[y] < s + i; pos[y]++)
             ^
input/code.cpp:50:13: warning: statement has no effect [-Wunused-value]
   for (pos[y]; pos[y] >= s; pos[y]--)
             ^

Code

#include <iostream>

using namespace std;

int n, grid[1000][1000], sum[2][1000], amount[1001], pos[1000];
bool found, sums[1000001];

int min(int a, int b) {
	return a < b ? a : b;
}

void dis(int z, int y) {
	if (amount[z] == 0)
	{
		if (z == n)
		{
			found = true;
			for (int i = n; i <= n * n; i++)
				sums[i] = false;
			for (int i = 0; i < 2 && found; i++)
			{
				for (int j = 0; j < n && found; j++)
				{
					if (sums[sum[i][j]])
						found = false;
					else
						sums[sum[i][j]] = true;
				}
			}
		}
		else
			dis(z + 1, 0);
		return;
	}
	if (y == n)
		return;
	for (int i = min(amount[z], n - pos[y]); i >= 0 && !found; i--)
	{
		int s = pos[y];
		for (pos[y]; pos[y] < s + i; pos[y]++)
		{
			grid[pos[y]][y] = z;
			sum[0][pos[y]] += z;
			sum[1][y] += z;
		}
		amount[z] -= i;
		dis(z, y + 1);
		amount[z] += i;
		pos[y]--;
		for (pos[y]; pos[y] >= s; pos[y]--)
		{
			sum[0][pos[y]] -= z;
			sum[1][y] -= z;
		}
		pos[y]++;
	}
}

int main() {
	cin >> n;

	for (int i = 0; i <= n; i++)
		amount[i] = n;

	dis(1, 0);

	if (found)
	{
		for (int y = 0; y < n; y++)
		{
			cout << grid[0][y];
			for (int x = 1; x < n; x++)
				cout << " " << grid[x][y];
			cout << endl;
		}
	}
	else
		cout << "QAQ" << endl;

	/*cout << endl << "Press enter to continue...";
	cin.ignore(numeric_limits<streamsize>::max(), '\n');
	cin.get();*/

	return 0;
}

Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
2

correct output
QAQ

user output
QAQ

Test 2

Group: 1

Verdict: ACCEPTED

input
3

correct output
QAQ

user output
QAQ

Test 3

Group: 1

Verdict: ACCEPTED

input
4

correct output
3 4 3 4
3 1 1 2
4 4 3 2
2 2 1 1

user output
1 1 1 2
1 2 3 4
2 2 4 4
3 3 3 4

Test 4

Group: 1

Verdict: ACCEPTED

input
5

correct output
2 3 4 1 1 
3 4 2 1 2 
4 2 3 1 3 
4 3 2 1 4 
5 5 5 5 5 

user output
1 1 1 1 1
2 2 2 2 2
3 3 4 4 5
3 3 4 5 5
3 4 4 5 5

Test 5

Group: 1

Verdict: ACCEPTED

input
6

correct output
2 3 4 5 1 1 
3 4 5 2 1 2 
4 5 2 3 1 3 
5 2 3 4 1 4 
5 4 3 2 1 5 
...

user output
1 1 1 1 1 1
2 2 2 2 2 2
3 3 3 3 3 4
3 4 5 5 5 6
4 4 5 5 6 6
...

Test 6

Group: 1

Verdict: ACCEPTED

input
7

correct output
2 3 4 5 6 1 1 
3 4 5 6 2 1 2 
4 5 6 2 3 1 3 
5 6 2 3 4 1 4 
6 2 3 4 5 1 5 
...

user output
1 1 1 1 1 1 1
2 2 2 2 2 2 2
3 3 3 3 3 3 3
4 4 4 4 4 4 7
4 5 5 5 6 6 6
...

Test 7

Group: 1

Verdict: ACCEPTED

input
8

correct output
2 3 4 5 6 7 1 1 
3 4 5 6 7 2 1 2 
4 5 6 7 2 3 1 3 
5 6 7 2 3 4 1 4 
6 7 2 3 4 5 1 5 
...

user output
1 1 1 1 1 1 1 1
2 2 2 2 2 2 2 2
3 3 3 3 3 3 3 3
4 4 4 4 4 4 4 4
5 5 5 5 5 5 6 6
...

Test 8

Group: 1

Verdict: ACCEPTED

input
9

correct output
2 3 4 5 6 7 8 1 1 
3 4 5 6 7 8 2 1 2 
4 5 6 7 8 2 3 1 3 
5 6 7 8 2 3 4 1 4 
6 7 8 2 3 4 5 1 5 
...

user output
1 1 1 1 1 1 1 1 1
2 2 2 2 2 2 2 2 2
3 3 3 3 3 3 3 3 3
4 4 4 4 4 4 4 4 4
5 5 5 5 5 5 5 5 5
...

Test 9

Group: 1

Verdict: ACCEPTED

input
10

correct output
2 3 4 5 6 7 8 9 1 1 
3 4 5 6 7 8 9 2 1 2 
4 5 6 7 8 9 2 3 1 3 
5 6 7 8 9 2 3 4 1 4 
6 7 8 9 2 3 4 5 1 5 
...

user output
1 1 1 1 1 1 1 1 1 1
2 2 2 2 2 2 2 2 2 2
3 3 3 3 3 3 3 3 3 3
4 4 4 4 4 4 4 4 4 4
5 5 5 5 5 5 5 5 5 5
...

Test 10

Group: 2

Verdict: ACCEPTED

input
3

correct output
QAQ

user output
QAQ

Test 11

Group: 2

Verdict: ACCEPTED

input
4

correct output
3 4 3 4
3 1 1 2
4 4 3 2
2 2 1 1

user output
1 1 1 2
1 2 3 4
2 2 4 4
3 3 3 4

Test 12

Group: 2

Verdict:

input
29

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

user output
(empty)

Test 13

Group: 2

Verdict:

input
48

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

user output
(empty)

Test 14

Group: 2

Verdict:

input
80

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

user output
(empty)

Test 15

Group: 2

Verdict:

input
97

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

user output
(empty)

Test 16

Group: 3

Verdict: ACCEPTED

input
3

correct output
QAQ

user output
QAQ

Test 17

Group: 3

Verdict: ACCEPTED

input
4

correct output
3 4 3 4
3 1 1 2
4 4 3 2
2 2 1 1

user output
1 1 1 2
1 2 3 4
2 2 4 4
3 3 3 4

Test 18

Group: 3

Verdict:

input
111

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

user output
(empty)

Test 19

Group: 3

Verdict:

input
506

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

user output
(empty)

Test 20

Group: 3

Verdict:

input
844

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

user output
(empty)

Test 21

Group: 3

Verdict:

input
991

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

user output
(empty)