| Task: | Spiraali |
| Sender: | Salama |
| Submission time: | 2021-10-11 13:52:56 +0300 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | 35 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 15 |
| #2 | ACCEPTED | 20 |
| #3 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.01 s | 1 | details |
| #2 | ACCEPTED | 0.01 s | 2 | details |
| #3 | WRONG ANSWER | 0.01 s | 3 | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:47:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i < t; i++) {
~~^~~Code
#include <bits/stdc++.h>
using namespace std;
int getNum(unsigned long long n, unsigned long long x, unsigned long long y) {
if(x == 1) {
return y;
}
else {
unsigned long long tcx, tcy;
tcx = min(n-x, x);
tcy = min(n-y, y);
bool p = false;
if(x <= n-y) { //v
p = false;
}
else {
p = true;
}
if(p) {
if(tcx <= tcy) {
return ((tcx*2+1)*2*n- (tcx*2+1)*(tcx*2+1) + n - y - (tcx-1/2));
}
else {
return ((tcy*2+1)*(2*n-(tcy*2+1)) - n + (x + (tcy*2+1)/2));
}
}
else {
//((tcx + (n-x < x ? 1 : 0))%2==0 && tcy%2==0) ||
if(tcx - (((tcx + (n-x < x ? 1 : 0))%2==0 && tcy%2==0) || ((tcx + (n-x < x ? 1 : 0)) == tcy && (tcx + (n-x < x ? 1 : 0))%2==1) ? 1 : 0) < tcy) {
return ((tcx-1)*2*(2*n-(tcx-1)*2) - ((tcx-1)*2-1)/2 + y - 1);
}
else {
return (tcy*2*(2*n-tcy*2) - x + tcy*2/2 + 1);
}
}
}
}
int main () {
ios_base::sync_with_stdio(0);
cin.tie(0);
unsigned long long n, t, x, y;
cin >> n >> t;
for(int i = 0; i < t; i++) {
cin >> y >> x;
cout << getNum(n, x, y) << ((i % n == n-1) ? "\n" : " ");
}
}Test details
Test 1
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 10 100 1 1 1 2 1 3 1 4 ... |
| correct output |
|---|
| 1 36 35 34 33 ... |
| user output |
|---|
| 1 36 35 34 33 32 31 30 29 28 2 37 64 63 62 61 60 59 58 27 3 38 65 84 83 82 81 80 57 26 4 3 ... Truncated |
Test 2
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 1000 1000 371 263 915 322 946 880 53 738 ... |
| correct output |
|---|
| 773533 312166 206053 200080 593922 ... |
| user output |
|---|
| 773533 312166 206053 200080 59... Truncated |
Test 3
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 1000000000 1000 177757853 827347032 409613589 419171337 739269360 256524697 328695530 896842209 ... |
| correct output |
|---|
| 571375684522141210 967321186816598569 762879105851175000 370065046779516790 936897883750373771 ... |
| user output |
|---|
| 1698489882 -1947622871 1054060... Truncated |
