Task: | Lista |
Sender: | Guuber |
Submission time: | 2020-09-05 10:19:18 +0300 |
Language: | C++ (C++11) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
#2 | RUNTIME ERROR | 0 |
#3 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 0.01 s | 1, 2, 3 | details |
#2 | RUNTIME ERROR | 0.01 s | 1, 2, 3 | details |
#3 | RUNTIME ERROR | 0.01 s | 1, 2, 3 | details |
#4 | RUNTIME ERROR | 0.01 s | 1, 2, 3 | details |
#5 | RUNTIME ERROR | 0.01 s | 1, 2, 3 | details |
#6 | RUNTIME ERROR | 0.01 s | 1, 2, 3 | details |
#7 | RUNTIME ERROR | 0.01 s | 1, 2, 3 | details |
#8 | RUNTIME ERROR | 0.01 s | 1, 2, 3 | details |
#9 | RUNTIME ERROR | 0.01 s | 1, 2, 3 | details |
#10 | RUNTIME ERROR | 0.01 s | 2, 3 | details |
#11 | RUNTIME ERROR | 0.01 s | 2, 3 | details |
#12 | RUNTIME ERROR | 0.01 s | 2, 3 | details |
#13 | RUNTIME ERROR | 0.01 s | 2, 3 | details |
#14 | RUNTIME ERROR | 0.01 s | 2, 3 | details |
#15 | RUNTIME ERROR | 0.01 s | 2, 3 | details |
#16 | RUNTIME ERROR | 0.01 s | 3 | details |
#17 | RUNTIME ERROR | 0.01 s | 3 | details |
#18 | RUNTIME ERROR | 0.01 s | 3 | details |
#19 | RUNTIME ERROR | 0.01 s | 3 | details |
#20 | RUNTIME ERROR | 0.01 s | 3 | details |
#21 | RUNTIME ERROR | 0.01 s | 3 | details |
Compiler report
input/code.cpp: In function 'void haku(int, std::vector<int>)': input/code.cpp:23:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if(path.size() == n){ ~~~~~~~~~~~~^~~~
Code
#include<bits/stdc++.h> using namespace std; vector<int> graph[101010]; int prime[1010101]; int degree[101010]; int z[101010]; int eka[101010]; int toka[101010]; int kaytetty[101010]; vector<int> polku; int n; bool bo; void haku(int node, vector<int> path){ //cout << path.size() << "\n"; if(z[node]) return; if(bo) return; z[node] = 1; path.push_back(node); //cout << path.size() << " " << n << "\n"; if(path.size() == n){ // cout << "LOIJOIJOIJOIJOIJOJOJOIJO\n"; polku = path; bo = true; return; } degree[node]--; vector<pair<int,int>> seuri; for(auto seur : graph[node]){ if(bo) return; // haku(seur, path); seuri.push_back({degree[seur], seur}); } sort(seuri.begin(), seuri.end()); for(auto u : seuri){ if(u.first > 1){ if(bo) return; degree[u.second]--; haku(u.second, path); degree[u.second]++; } } degree[node]++; z[node] = 0; } int main(int argc, char *argv[]){ // cin >> n; n = atoi(argv[1]); cout << n << "\n"; for(int i = 2; i < 10101; i++){ if(prime[i]) continue; prime[i] = i; for(int u = i; u <= 10101; u += i){ prime[u] = i; } } for(int i = 1; i <= n; i++){ for(int j = 1; j <= n; j++){ if(prime[i+j] == i+j){ degree[i]++; degree[j]++; graph[i].push_back(j); graph[j].push_back(i); } } } int luku = n; while(luku != 0){ for(int i = 1; i <= n; i++){ if(prime[i+luku] == i+luku){ for(int j = 0; j <= luku; j++){ eka[luku-j] = i + j; } luku = i-1; break; } } } luku = n; while(luku != 0){ for(int i = luku; i >= 1; i--){ if(prime[i + luku] == i + luku){ for(int j = 0; j <= luku; j++){ toka[luku-j] = i + j; } luku = i-1; break; } } } for(int ss = 1; ss <= 2000; ss++){ int e = ss; bo = true; vector<int> ve = {}; for(int i = 0; i < n; i++){ ve.push_back(e); if(kaytetty[e]) bo = false; kaytetty[e] = 1; if(!kaytetty[eka[e]]){ e = eka[e]; }else if(!kaytetty[eka[e]]){ e = toka[e]; }else{ for(int i = 1; i <= n; i++){ if(!kaytetty[i] && prime[i+e] == i+e){ e = i; break; } } } } for(int i = 0; i <= 2000; i++){ kaytetty[i] = 0; } if(bo){ for(auto u : ve) cout << u << " "; cout << "\n"; break;} //cout << "\n\n"; //cout << ve.size() << " SIZE\n"; } if(!bo){ haku(1,{}); for(auto u : polku) cout << u << " "; cout << "\n"; } }
Test details
Test 1
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
2 |
correct output |
---|
1 2 |
user output |
---|
(empty) |
Test 2
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
3 |
correct output |
---|
1 2 3 |
user output |
---|
(empty) |
Test 3
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
4 |
correct output |
---|
1 2 3 4 |
user output |
---|
(empty) |
Test 4
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
5 |
correct output |
---|
3 4 1 2 5 |
user output |
---|
(empty) |
Test 5
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
6 |
correct output |
---|
3 4 1 2 5 6 |
user output |
---|
(empty) |
Test 6
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
7 |
correct output |
---|
3 4 1 2 5 6 7 |
user output |
---|
(empty) |
Test 7
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
8 |
correct output |
---|
7 6 5 2 1 4 3 8 |
user output |
---|
(empty) |
Test 8
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
9 |
correct output |
---|
7 6 5 2 1 4 3 8 9 |
user output |
---|
(empty) |
Test 9
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
10 |
correct output |
---|
7 6 5 2 1 4 3 8 9 10 |
user output |
---|
(empty) |
Test 10
Group: 2, 3
Verdict: RUNTIME ERROR
input |
---|
19 |
correct output |
---|
17 14 3 8 15 16 13 6 5 2 1 4 9... |
user output |
---|
(empty) |
Test 11
Group: 2, 3
Verdict: RUNTIME ERROR
input |
---|
56 |
correct output |
---|
55 54 53 50 51 52 49 48 13 28 ... |
user output |
---|
(empty) |
Test 12
Group: 2, 3
Verdict: RUNTIME ERROR
input |
---|
70 |
correct output |
---|
67 4 1 2 9 32 35 38 65 66 61 4... |
user output |
---|
(empty) |
Test 13
Group: 2, 3
Verdict: RUNTIME ERROR
input |
---|
76 |
correct output |
---|
73 66 61 42 59 54 53 50 51 52 ... |
user output |
---|
(empty) |
Test 14
Group: 2, 3
Verdict: RUNTIME ERROR
input |
---|
90 |
correct output |
---|
87 86 11 18 29 44 45 16 55 58 ... |
user output |
---|
(empty) |
Test 15
Group: 2, 3
Verdict: RUNTIME ERROR
input |
---|
100 |
correct output |
---|
97 96 95 78 25 82 81 56 71 68 ... |
user output |
---|
(empty) |
Test 16
Group: 3
Verdict: RUNTIME ERROR
input |
---|
154 |
correct output |
---|
151 6 5 92 137 134 149 84 143 ... |
user output |
---|
(empty) |
Test 17
Group: 3
Verdict: RUNTIME ERROR
input |
---|
430 |
correct output |
---|
427 426 371 372 367 376 375 35... |
user output |
---|
(empty) |
Test 18
Group: 3
Verdict: RUNTIME ERROR
input |
---|
629 |
correct output |
---|
627 404 227 146 83 150 77 74 3... |
user output |
---|
(empty) |
Test 19
Group: 3
Verdict: RUNTIME ERROR
input |
---|
833 |
correct output |
---|
829 828 793 574 523 516 515 51... |
user output |
---|
(empty) |
Test 20
Group: 3
Verdict: RUNTIME ERROR
input |
---|
885 |
correct output |
---|
883 724 723 878 881 726 721 71... |
user output |
---|
(empty) |
Test 21
Group: 3
Verdict: RUNTIME ERROR
input |
---|
1000 |
correct output |
---|
997 996 737 884 995 492 991 20... |
user output |
---|
(empty) |