Task: | Murtoviiva |
Sender: | jusola |
Submission time: | 2021-01-24 12:32:45 +0200 |
Language: | C++ (C++17) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
#4 | WRONG ANSWER | 0 |
#5 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.01 s | 1, 2, 4, 5 | details |
#2 | WRONG ANSWER | 0.01 s | 1, 2, 4, 5 | details |
#3 | WRONG ANSWER | 0.01 s | 1, 2, 4, 5 | details |
#4 | WRONG ANSWER | 0.01 s | 1, 2, 4, 5 | details |
#5 | WRONG ANSWER | 0.01 s | 1, 2, 4, 5 | details |
#6 | WRONG ANSWER | 0.01 s | 2, 4, 5 | details |
#7 | ACCEPTED | 0.01 s | 2, 4, 5 | details |
#8 | WRONG ANSWER | 0.01 s | 2, 4, 5 | details |
#9 | WRONG ANSWER | 0.01 s | 2, 4, 5 | details |
#10 | WRONG ANSWER | 0.01 s | 2, 4, 5 | details |
#11 | WRONG ANSWER | 0.01 s | 4, 5 | details |
#12 | WRONG ANSWER | 0.06 s | 5 | details |
#13 | WRONG ANSWER | 0.02 s | 3, 4, 5 | details |
#14 | WRONG ANSWER | 0.02 s | 3, 4, 5 | details |
#15 | WRONG ANSWER | 0.01 s | 1, 2, 4, 5 | details |
#16 | WRONG ANSWER | 0.01 s | 4, 5 | details |
#17 | WRONG ANSWER | 0.02 s | 4, 5 | details |
#18 | TIME LIMIT EXCEEDED | -- | 5 | details |
#19 | WRONG ANSWER | 0.01 s | 1, 2, 4, 5 | details |
#20 | WRONG ANSWER | 0.01 s | 2, 4, 5 | details |
#21 | ACCEPTED | 0.01 s | 2, 4, 5 | details |
#22 | WRONG ANSWER | 0.01 s | 2, 4, 5 | details |
#23 | WRONG ANSWER | 0.01 s | 4, 5 | details |
#24 | WRONG ANSWER | 0.01 s | 4, 5 | details |
#25 | ACCEPTED | 0.01 s | 4, 5 | details |
#26 | ACCEPTED | 0.05 s | 5 | details |
#27 | WRONG ANSWER | 0.06 s | 5 | details |
#28 | WRONG ANSWER | 0.05 s | 5 | details |
#29 | WRONG ANSWER | 0.05 s | 5 | details |
#30 | WRONG ANSWER | 0.01 s | 1, 2, 4, 5 | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:103:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i = 0; i < dirs.length(); i++){ ~~^~~~~~~~~~~~~~~
Code
#include <iostream>#include <string>#include <vector>using namespace std;bool isBetween(int a, int b, int comp){if(a > b) {int temp = a;a = b;a = temp;}return(a < comp && comp < b);}struct S {int x;int y;bool isVert;int l;bool c(S other){if (other.isVert == isVert){return false;}if (isVert){return (isBetween(other.x, other.x+other.l, x)&&isBetween(y, y+l, other.y));}else{return (isBetween(x, x+l, other.x)&&isBetween(other.y, other.y+other.l, y));}};bool operator==(const S& other){return (x == other.x && y == other.y && l == other.l && isVert == other.isVert);}};int main(){int n;cin >> n;vector <int> horlens;vector <S> lines;for (int i = 0; i < n; i++) {int nlen;cin >> nlen;horlens.push_back(nlen);}string dirs;cin >> dirs;int hordir = 1;int curx = 0;int cury = 0;int yl = 536870912;for(unsigned int i = 0; i < horlens.size(); i++){int l1 = horlens[i] * hordir;S nl1;nl1.x = curx;nl1.y = cury;hordir = - hordir;curx += l1;nl1.l = l1;nl1.isVert = false;lines.push_back(nl1);//cout << "new line x: " << nl1.x << " " << nl1.y << " " << nl1.l << "\n";if(i < dirs.length()){int ydir = 1;if(dirs[i] == 'D'){ydir = -1;}int l2 = yl*ydir;S nl2;nl2.x = curx;nl2.y = cury;cury += l2;nl2.l = l2;nl2.isVert = true;lines.push_back(nl2);//cout << "new line y : " << nl2.x << " " << nl2.y << " " << nl2.l << "\n";yl = yl / 2;}}for(auto& t1 : lines){for(auto& t2 : lines){if(!(t1 == t2) && t1.c(t2)){//cout << "collision1: " << t1.x << " " << t1.y << " " << t1.l << " isvert: " << t1.isVert << "\n";//cout << "collision2: " << t2.x << " " << t2.y << " " << t2.l << " isvert: " << t2.isVert << "\n";cout << "NO";return 0;};}}cout << "YES\n";int yl2 = 536870912; // less than 10e9for(int i = 0; i < dirs.length(); i++){cout << yl2 << " ";yl2 = yl2 / 2;}return 0;}
Test details
Test 1
Group: 1, 2, 4, 5
Verdict: ACCEPTED
input |
---|
2 2 10 D |
correct output |
---|
YES 1 |
user output |
---|
YES 536870912 |
Test 2
Group: 1, 2, 4, 5
Verdict: WRONG ANSWER
input |
---|
8 5 8 7 5 6 5 3 4 DUUUDDD |
correct output |
---|
YES 1 5 1 1 3 1 1 |
user output |
---|
YES 536870912 268435456 134217728 ... |
Test 3
Group: 1, 2, 4, 5
Verdict: WRONG ANSWER
input |
---|
8 9 8 8 10 10 8 9 10 DDDUUUD |
correct output |
---|
YES 1 1 1 4 1 1 7 |
user output |
---|
YES 536870912 268435456 134217728 ... |
Test 4
Group: 1, 2, 4, 5
Verdict: WRONG ANSWER
input |
---|
8 9 10 8 8 9 9 7 8 DDDDUUU |
correct output |
---|
NO |
user output |
---|
YES 536870912 268435456 134217728 ... |
Test 5
Group: 1, 2, 4, 5
Verdict: WRONG ANSWER
input |
---|
8 10 2 8 3 10 2 10 10 DDUUUUD |
correct output |
---|
YES 1 1 3 1 1 1 7 |
user output |
---|
YES 536870912 268435456 134217728 ... |
Test 6
Group: 2, 4, 5
Verdict: WRONG ANSWER
input |
---|
15 73 74 97 82 19 50 26 51 56 93 ... |
correct output |
---|
YES 1 2 3 1 1 3 1 1 1 10 1 3 1 1 |
user output |
---|
NO |
Test 7
Group: 2, 4, 5
Verdict: ACCEPTED
input |
---|
15 95 71 97 77 98 76 100 62 96 69... |
correct output |
---|
YES 1 1 3 1 1 1 1 1 9 1 11 1 13 1 |
user output |
---|
YES 536870912 268435456 134217728 ... Truncated |
Test 8
Group: 2, 4, 5
Verdict: WRONG ANSWER
input |
---|
15 79 81 84 86 88 90 92 92 91 89 ... |
correct output |
---|
YES 1 2 3 4 5 6 14 1 6 5 4 3 2 1 |
user output |
---|
NO |
Test 9
Group: 2, 4, 5
Verdict: WRONG ANSWER
input |
---|
15 97 90 87 83 79 76 74 23 24 76 ... |
correct output |
---|
YES 13 11 9 7 5 3 1 1 3 5 7 9 11 1... |
user output |
---|
NO |
Test 10
Group: 2, 4, 5
Verdict: WRONG ANSWER
input |
---|
15 100 2 99 1 78 4 93 2 100 1 15 ... |
correct output |
---|
NO |
user output |
---|
YES 536870912 268435456 134217728 ... Truncated |
Test 11
Group: 4, 5
Verdict: WRONG ANSWER
input |
---|
1000 999997 999995 999993 999991 99... |
correct output |
---|
YES 997 995 993 991 989 987 985 98... |
user output |
---|
NO |
Test 12
Group: 5
Verdict: WRONG ANSWER
input |
---|
100000 999999998 999999996 999999994 ... |
correct output |
---|
YES 99997 99995 99993 99991 99989 ... |
user output |
---|
NO |
Test 13
Group: 3, 4, 5
Verdict: WRONG ANSWER
input |
---|
1000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
YES 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
YES 536870912 268435456 134217728 ... Truncated |
Test 14
Group: 3, 4, 5
Verdict: WRONG ANSWER
input |
---|
1000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
NO |
user output |
---|
YES 536870912 268435456 134217728 ... Truncated |
Test 15
Group: 1, 2, 4, 5
Verdict: WRONG ANSWER
input |
---|
5 6 7 7 6 6 UDUU |
correct output |
---|
YES 1 4 1 1 |
user output |
---|
YES 536870912 268435456 134217728 ... |
Test 16
Group: 4, 5
Verdict: WRONG ANSWER
input |
---|
30 15 12 9 88 10 26 78 23 67 14 9... |
correct output |
---|
YES 1 1 1 4 1 3 1 1 7 1 19 1 1 3 1... |
user output |
---|
NO |
Test 17
Group: 4, 5
Verdict: WRONG ANSWER
input |
---|
1000 1000000 1 146324 146324 289287... |
correct output |
---|
YES 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
YES 536870912 268435456 134217728 ... Truncated |
Test 18
Group: 5
Verdict: TIME LIMIT EXCEEDED
input |
---|
100000 1000000000 1 421262579 4212625... |
correct output |
---|
YES 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
(empty) |
Test 19
Group: 1, 2, 4, 5
Verdict: WRONG ANSWER
input |
---|
8 1 3 1 2 5 1 1 2 DUUUDUU |
correct output |
---|
NO |
user output |
---|
YES 536870912 268435456 134217728 ... |
Test 20
Group: 2, 4, 5
Verdict: WRONG ANSWER
input |
---|
15 3 1 33 13 1 11 32 8 1 19 15 25... |
correct output |
---|
YES 1 1 5 1 1 3 5 1 1 1 1 5 2 1 |
user output |
---|
NO |
Test 21
Group: 2, 4, 5
Verdict: ACCEPTED
input |
---|
15 10 2 39 41 42 34 31 28 26 24 2... |
correct output |
---|
YES 1 1 1 1 10 9 8 7 6 1 4 1 1 1 |
user output |
---|
YES 536870912 268435456 134217728 ... Truncated |
Test 22
Group: 2, 4, 5
Verdict: WRONG ANSWER
input |
---|
15 27 4 6 23 26 37 40 38 44 27 3 ... |
correct output |
---|
YES 1 1 1 1 5 1 7 1 3 1 1 3 1 1 |
user output |
---|
NO |
Test 23
Group: 4, 5
Verdict: WRONG ANSWER
input |
---|
1000 3246 3562 197273 197429 197755... |
correct output |
---|
YES 1 1 1 4 5 10 3 1 1 3 7 12 1 1 ... |
user output |
---|
NO |
Test 24
Group: 4, 5
Verdict: WRONG ANSWER
input |
---|
1000 503981 503487 503350 502673 50... |
correct output |
---|
YES 999 1 997 1 1 994 989 1 1 1 1 ... |
user output |
---|
NO |
Test 25
Group: 4, 5
Verdict: ACCEPTED
input |
---|
1000 1445 1363 1749 1084 262408 263... |
correct output |
---|
NO |
user output |
---|
NO |
Test 26
Group: 5
Verdict: ACCEPTED
input |
---|
100000 209655 9167 9389 191291 198294... |
correct output |
---|
NO |
user output |
---|
NO |
Test 27
Group: 5
Verdict: WRONG ANSWER
input |
---|
100000 16295 14904 5103 13337 26939 3... |
correct output |
---|
YES 1 1 1 1 5 6 1 1 1 10 11 1 13 1... |
user output |
---|
NO |
Test 28
Group: 5
Verdict: WRONG ANSWER
input |
---|
100000 1859 174288 15040 4631 4993844... |
correct output |
---|
YES 1 3 1 1 99997 99992 1 1 5 1 1 ... |
user output |
---|
NO |
Test 29
Group: 5
Verdict: WRONG ANSWER
input |
---|
100000 959817 958289 966165 922369 92... |
correct output |
---|
YES 1 1 1 1 1 1 1 1 1 1 11 14 1 1 ... |
user output |
---|
NO |
Test 30
Group: 1, 2, 4, 5
Verdict: WRONG ANSWER
input |
---|
8 2 3 2 3 5 6 7 8 UDDDUDU |
correct output |
---|
YES 1 2 1 1 5 6 7 |
user output |
---|
NO |