CSES - Datatähti 2022 alku - Results
Submission details
Task:Spiraali
Sender:jusola
Submission time:2021-10-10 20:55:32 +0300
Language:C++11
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.01 s1details
#20.01 s2details
#3--3details

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-1,y-1);
    }

    return 0;

}

Test details

Test 1

Group: 1

Verdict:

input
10 100
1 1
1 2
1 3
1 4
...

correct output
1
36
35
34
33
...

user output
n: 10
1n: 10
2n: 10
3n: 10
4n: 10
...

Test 2

Group: 2

Verdict:

input
1000 1000
371 263
915 322
946 880
53 738
...

correct output
773533
312166
206053
200080
593922
...

user output
n: 1000
775217n: 1000
313352n: 1000
206185n: 1000
197870n: 1000
...

Test 3

Group: 3

Verdict:

input
1000000000 1000
177757853 827347032
409613589 419171337
739269360 256524697
328695530 896842209
...

correct output
571375684522141210
967321186816598569
762879105851175000
370065046779516790
936897883750373771
...

user output
(empty)