CSES - Datatähti 2017 loppu - Results
Submission details
Task:Ruudukko
Sender:Pohjantahti
Submission time:2017-06-22 19:42:39 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.04 s1details
#2ACCEPTED0.03 s1details
#30.04 s1details
#40.05 s1details
#50.04 s1details
#60.04 s1details
#70.04 s1details
#80.04 s1details
#90.04 s1details
#10ACCEPTED0.05 s2details
#110.05 s2details
#120.04 s2details
#130.09 s2details
#140.52 s2details
#15--2details
#16ACCEPTED0.04 s3details
#170.04 s3details
#18--3details
#19--3details
#20--3details
#21--3details

Code

#include <iostream>
#include <algorithm>
#include <vector>
#include <set>

using namespace std;

int n;

int gind(int y, int x) {
    return n*y+x;
}

bool ok(vector<int> v) {
    set<int> s1, s2;
    for (int i = 0; i < n; ++i) {
        int csum = 0;
        int osum = 0;
        for (int j = 0; j < n; ++j) {
            csum += v[gind(i, j)];
            osum += v[gind(j, i)];
        }
        if (s1.find(csum) != s1.end()) return false;
        s1.insert(csum);
        if (s2.find(osum) != s2.end()) return false;
        s2.insert(osum);
    }
    return true;
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cin >> n;
    if (n <= 3) {
        cout << "QAQ\n";
        return 0;
    }
    vector<int> v;
    for (int i = 1; i <= n; ++i) {
        for (int j = 0; j < n; ++j) {
            v.push_back(i);
        }
    }
    while (!ok(v)) {
        random_shuffle(v.begin(), v.end());
    }
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < n; ++j) {
            cout << v[gind(i, j)] << " ";
        }
        cout << "\n";
    }
    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:

input
4

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

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

Test 4

Group: 1

Verdict:

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
2 3 2 5 5 
2 1 1 4 3 
3 2 1 5 1 
1 4 3 3 4 
4 4 2 5 5 

Test 5

Group: 1

Verdict:

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
4 3 4 1 2 3 
2 2 4 6 6 6 
2 2 4 3 2 1 
5 3 6 5 6 3 
3 1 6 4 1 5 
...

Test 6

Group: 1

Verdict:

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 6 6 2 5 2 3 
7 6 4 4 2 5 7 
5 4 3 2 4 1 5 
4 2 1 1 6 4 3 
6 7 3 4 3 7 3 
...

Test 7

Group: 1

Verdict:

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
2 1 8 5 4 3 4 1 
1 5 1 1 5 3 7 6 
7 8 1 4 8 8 4 6 
2 5 6 1 7 1 7 6 
5 2 2 2 2 8 4 5 
...

Test 8

Group: 1

Verdict:

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
8 6 3 1 4 4 2 3 1 
5 3 5 6 8 1 9 7 5 
9 5 5 9 1 9 7 8 6 
4 9 6 1 3 8 1 7 5 
6 8 2 4 9 4 2 8 8 
...

Test 9

Group: 1

Verdict:

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
3 4 1 5 8 8 9 7 2 2 
3 2 5 5 3 8 6 3 3 8 
3 7 5 10 4 4 10 6 9 9 
6 4 10 8 9 7 1 9 8 2 
2 10 4 10 4 10 9 8 5 3 
...

Test 10

Group: 2

Verdict: ACCEPTED

input
3

correct output
QAQ

user output
QAQ

Test 11

Group: 2

Verdict:

input
4

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

user output
3 2 1 4 
1 4 1 2 
2 4 2 1 
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
22 7 7 10 11 22 6 15 29 24 23 ...

Test 13

Group: 2

Verdict:

input
48

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

user output
43 9 19 43 3 46 20 40 2 23 39 ...

Test 14

Group: 2

Verdict:

input
80

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

user output
35 66 44 38 28 6 12 79 53 21 7...

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:

input
4

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

user output
3 2 1 4 
1 4 1 2 
2 4 2 1 
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)