# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1044047 | guagua0407 | Portal (BOI24_portal) | C++17 | 18 ms | 4052 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//#pragma GCC optimize("O3")
#include <bits/stdc++.h>
using namespace std;
#define ll __int128
#define pii pair<int,int>
#define f first
#define s second
#define all(x) x.begin(),x.end()
#define _ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int dx[4]={0,0,1,-1};
int dy[4]={1,-1,0,0};
void setIO(string s) {
freopen((s + ".in").c_str(), "r", stdin);
freopen((s + ".out").c_str(), "w", stdout);
}
ll abs2(ll a){
return (a<0?a*-1:a);
}
int main() {_
int n;
cin>>n;
if(n<=2){
cout<<-1<<'\n';
return 0;
}
pair<ll,ll> st,a,b;
int x,y;
cin>>x>>y;
st.f=x,st.s=y;
cin>>x>>y;
a.f=x,a.s=y;
a.f-=st.f;
a.s-=st.s;
if(a.f<0){
a.f*=-1;
a.s*=-1;
}
vector<ll> ys;
auto go=[&](){
if(a.f<b.f) swap(a,b);
while(b.f!=0){
ll c=a.f/b.f;
a.f-=c*b.f;
a.s-=c*b.s;
if(a.f<b.f) swap(a,b);
}
ys.push_back(abs2(b.s));
};
for(int i=0;i<n-2;i++){
cin>>x>>y;
b.f=x,b.s=y;
b.f-=st.f;
b.s-=st.s;
if(b.f<0){
b.f*=-1;
b.s*=-1;
}
go();
}
ll g=ys[0];
for(int i=1;i<(int)ys.size();i++){
g=__gcd(g,ys[i]);
}
ll ans=abs2(g*a.f);
cout<<(ans==0?-1:(long long)ans)<<'\n';
return 0;
}
//maybe its multiset not set
//yeeorz
//laborz
컴파일 시 표준 에러 (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... |