Submission #1076512

#TimeUsernameProblemLanguageResultExecution timeMemory
1076512ArturgoPortal (BOI24_portal)C++14
1 / 100
38 ms1688 KiB
#include <bits/stdc++.h>
#define int long long
using namespace std;
int N, A, B, C, X, Y, OX, OY;

signed main() {
    cin >> N >> OX >> OY;
    N--;

    while(N--) {
        cin >> X >> Y;
        X -= OX; Y -= OX;

        while(X != 0) {
            int R = A / X;
            A -= R * X; B -= R * Y;
            swap(A, X); swap(B, Y);
        }

        while(Y != 0) {
            int R = C / Y;
            C -= R * Y;
            swap(C, Y);
        }

        if(C != 0) B %= C;
    }

    if(A == 0 || C == 0) cout << -1 << endl;
    else cout << abs(A * C) << endl;
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...