| Task: | Spiraali |
| Sender: | jusola |
| Submission time: | 2021-10-10 20:54:32 +0300 |
| Language: | C++ (C++11) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | WRONG ANSWER | 0.01 s | 1 | details |
| #2 | WRONG ANSWER | 0.01 s | 2 | details |
| #3 | TIME LIMIT EXCEEDED | -- | 3 | details |
Code
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#define ll long long
using namespace std;
int gne(int n, int x, int y) {
vector<int> dists;
dists.push_back(y);
dists.push_back(n-y-1);
dists.push_back(x);
dists.push_back(n-x-1);
int m = *min_element(dists.begin(), dists.end());
return m;
}
int getltop(int n, int l) {
int res = 1;
cout << "n: " << n << "\n";
for(int i = 0; i < l; i++) {
res += 4*(n-1-2*i);
}
return res;
}
int test(int n, int x, int y) {
int l = gne(n,x,y);
int ltop = getltop(n,l);
int llen = n-2*l-1;
//cout << "l: " << l << "ltop: " << ltop << " llen: " << llen <<"\n";
if (x == l){
//cout << "left";
return ltop + (y - l);
}
if ((y-l) == llen) {
//cout << "bot";
return ltop + llen + (x-l);
}
if ((x-l) == llen) {
//cout << "right";
return ltop + 3*llen - (y-l);
}
if (y == l) {
//cout << "top";
return ltop + 4*llen - (x-l);
}
//cout << "FAIL\n";
return 0;
}
int main() {
int n, t;
cin >> n >> t;
for(int i=0; i<t; i++){
int x, y;
cin >> x >> y;
cout << test(n,x,y);
}
return 0;
}
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 10 100 1 1 1 2 1 3 1 4 ... |
| correct output |
|---|
| 1 36 35 34 33 ... |
| user output |
|---|
| n: 10 37n: 10 38n: 10 39n: 10 40n: 10 ... Truncated |
Test 2
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 1000 1000 371 263 915 322 946 880 53 738 ... |
| correct output |
|---|
| 773533 312166 206053 200080 593922 ... |
| user output |
|---|
| n: 1000 777109n: 1000 310032n: 1000 202617n: 1000 201450n: 1000 ... Truncated |
Test 3
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 1000000000 1000 177757853 827347032 409613589 419171337 739269360 256524697 328695530 896842209 ... |
| correct output |
|---|
| 571375684522141210 967321186816598569 762879105851175000 370065046779516790 936897883750373771 ... |
| user output |
|---|
| (empty) |
