結果
問題 | No.849 yuki国の分割統治 |
ユーザー | kotatsugame |
提出日時 | 2019-07-07 19:37:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 173 ms / 2,000 ms |
コード長 | 797 bytes |
コンパイル時間 | 762 ms |
コンパイル使用メモリ | 75,008 KB |
実行使用メモリ | 10,112 KB |
最終ジャッジ日時 | 2024-10-07 01:09:55 |
合計ジャッジ時間 | 3,918 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 105 ms
5,248 KB |
testcase_08 | AC | 97 ms
6,400 KB |
testcase_09 | AC | 101 ms
5,376 KB |
testcase_10 | AC | 104 ms
5,248 KB |
testcase_11 | AC | 93 ms
5,376 KB |
testcase_12 | AC | 97 ms
5,248 KB |
testcase_13 | AC | 108 ms
5,504 KB |
testcase_14 | AC | 107 ms
5,248 KB |
testcase_15 | AC | 98 ms
6,144 KB |
testcase_16 | AC | 123 ms
8,576 KB |
testcase_17 | AC | 91 ms
5,248 KB |
testcase_18 | AC | 126 ms
8,832 KB |
testcase_19 | AC | 106 ms
5,248 KB |
testcase_20 | AC | 118 ms
6,784 KB |
testcase_21 | AC | 81 ms
5,248 KB |
testcase_22 | AC | 173 ms
7,936 KB |
testcase_23 | AC | 144 ms
7,296 KB |
testcase_24 | AC | 104 ms
5,248 KB |
testcase_25 | AC | 131 ms
10,112 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 2 ms
5,248 KB |
コンパイルメッセージ
main.cpp:13:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 13 | main() | ^~~~
ソースコード
#include<iostream> #include<set> using namespace std; long a,b,c,d; long gcd(long a,long b){return b?gcd(b,a%b):a;} int N; set<pair<pair<long,long>,pair<long,long> > >S; pair<long,long>f(pair<long,long>p) { p.first=(p.first%p.second+p.second)%p.second; return p; } main() { cin>>a>>b>>c>>d>>N; long t=a*d-b*c; int ans=N; for(int i=0;i<N;i++) { long x,y;cin>>x>>y; pair<long,long>p,q; if(t==0) { long A=gcd(a,c),B=gcd(b,d); if(A) { long X=x/A; x-=X*A; y-=X*B; } else { long X=y/B; x-=X*A; y-=X*B; } p=make_pair(x,y); q=make_pair(0,0); } else { p.first=d*x-c*y; q.first=-b*x+a*y; p.second=q.second=t; p=f(p); q=f(q); } ans-=S.find(make_pair(p,q))!=S.end(); S.insert(make_pair(p,q)); } cout<<ans<<endl; }