# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
994809 | salmon | Portal (BOI24_portal) | C++14 | 20 ms | 2512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int N;
long long int x,y;
long long int b,d;
long long int b1,d1;
long long int h1,h2;
bool flag = true;
bool floog = true;
vector<pair<long long int,long long int>> v;
mt19937 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
pair<long long int, long long int> gbcd(pair<long long int, long long int> ii1, pair<long long int, long long int> ii2){
if(ii1.first > ii2.first) swap(ii1,ii2);
if(ii1.first == ii2.first) return min(ii1,ii2);
if(ii1.first == 0) return ii1;
return gbcd({ii2.first % ii1.first, ii2.second - ii2.first / ii1.first * ii1.second }, ii1);
}
int main(){
__int128 num = 0;
long long int fum = 0;
scanf(" %d",&N);
scanf(" %lld",&x);
scanf(" %lld",&y);
b = 0;
d = 0;
for(int i = 0; i < N - 1; i++){
scanf(" %lld",&h1);
scanf(" %lld",&h2);
h1 -= x;
h2 -= y;
if(h1 == 0 && h2 == 0) continue;
flag &= (h1==0);
floog &= (h2==0);
if(h1 != 0 && (b == 0 && d == 0)){
h2 *= (h1)/abs(h1);
h1 = abs(h1);
b = h1;
d = h2;
}
else v.push_back({h1,h2});
}
if(flag || floog){
printf("%d",-1);
return 0;
}
for(pair<long long int,long long int> ii : v){
h1 = ii.first;
h2 = ii.second;
if(h1 != 0){
h2 *= (h1)/abs(h1);
h1 = abs(h1);
long long int c = __gcd(h1,b);
num = __gcd((long long int)num,gbcd({b,d},{h1,h2}).second);
}
else{
num = __gcd(num, (__int128)h2);
}
fum = b;
}
//printf("%lld\n",num);
if(fum == 0 || num == 0) printf("%d",-1);
else{
printf("%lld",abs((long long int)num * fum));
}
}
/*
5
0 0
2 1000000
1000007 1000005
1000003 1000005
1000007 1000001
*/
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |