結果
問題 | No.849 yuki国の分割統治 |
ユーザー | LayCurse |
提出日時 | 2019-07-06 15:31:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 21 ms / 2,000 ms |
コード長 | 3,382 bytes |
コンパイル時間 | 2,297 ms |
コンパイル使用メモリ | 206,172 KB |
実行使用メモリ | 8,068 KB |
最終ジャッジ日時 | 2024-10-06 23:57:51 |
合計ジャッジ時間 | 4,031 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 18 ms
8,068 KB |
testcase_08 | AC | 17 ms
6,856 KB |
testcase_09 | AC | 18 ms
7,548 KB |
testcase_10 | AC | 19 ms
7,960 KB |
testcase_11 | AC | 17 ms
6,816 KB |
testcase_12 | AC | 18 ms
7,164 KB |
testcase_13 | AC | 19 ms
6,820 KB |
testcase_14 | AC | 18 ms
7,448 KB |
testcase_15 | AC | 17 ms
6,816 KB |
testcase_16 | AC | 20 ms
6,852 KB |
testcase_17 | AC | 17 ms
6,856 KB |
testcase_18 | AC | 19 ms
6,816 KB |
testcase_19 | AC | 19 ms
6,824 KB |
testcase_20 | AC | 20 ms
7,116 KB |
testcase_21 | AC | 12 ms
7,264 KB |
testcase_22 | AC | 21 ms
6,820 KB |
testcase_23 | AC | 19 ms
7,600 KB |
testcase_24 | AC | 18 ms
6,852 KB |
testcase_25 | AC | 19 ms
6,820 KB |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 3 ms
6,820 KB |
testcase_29 | AC | 2 ms
6,816 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; void *wmem; template<class T1, class T2> void sortA_L(int N, T1 a[], T2 b[], void *mem = wmem){ int i; pair<T1, T2> *arr=(pair<T1, T2> *) mem; for(i=0;i<N;i++){ arr[i].first = a[i]; arr[i].second = b[i]; } sort(arr, arr+N); for(i=0;i<N;i++){ a[i] = arr[i].first; b[i] = arr[i].second; } } inline void rd(int &x){ int k, m=0; x=0; for(;;){ k = getchar_unlocked(); if(k=='-'){ m=1; break; } if('0'<=k&&k<='9'){ x=k-'0'; break; } } for(;;){ k = getchar_unlocked(); if(k<'0'||k>'9'){ break; } x=x*10+k-'0'; } if(m){ x=-x; } } inline void rd(long long &x){ int k, m=0; x=0; for(;;){ k = getchar_unlocked(); if(k=='-'){ m=1; break; } if('0'<=k&&k<='9'){ x=k-'0'; break; } } for(;;){ k = getchar_unlocked(); if(k<'0'||k>'9'){ break; } x=x*10+k-'0'; } if(m){ x=-x; } } inline void wt_L(char a){ putchar_unlocked(a); } inline void wt_L(int x){ char f[10]; int m=0, s=0; if(x<0){ m=1; x=-x; } while(x){ f[s++]=x%10; x/=10; } if(!s){ f[s++]=0; } if(m){ putchar_unlocked('-'); } while(s--){ putchar_unlocked(f[s]+'0'); } } template<class T> inline T GCD_L(T a,T b){ T r; while(a){ r=b; b=a; a=r%a; } return b; } template<class S, class T> inline S moddw_L(S a, const T b){ a %= b; if(a < 0){ a += b; } return a; } char memarr[96000000]; int N; long long A; long long B; long long C; long long D; long long X[100000]; long long Y[100000]; int main(){ int i, j, k, res=0; long long d, xx, yy; wmem = memarr; rd(A); rd(B); rd(C); rd(D); rd(N); { int Lj4PdHRW; for(Lj4PdHRW=0;Lj4PdHRW<N;Lj4PdHRW++){ rd(X[Lj4PdHRW]); rd(Y[Lj4PdHRW]); } } d = A*D - B*C; if(d < 0){ d = -d; } if(d == 0){ if(A==C && C==0){ i =GCD_L(B, D); A = 0; B = i; } else{ i =GCD_L(A, C); B = B * i / A; A = i; } for(k=0;k<N;k++){ if(A){ i =X[k]/A; } else{ i =Y[k]/B; } X[k] -= A * i; Y[k] -= B * i; } } else{ for(k=0;k<N;k++){ xx = X[k]; yy = Y[k]; X[k] =moddw_L((xx * D - yy * C),d); Y[k] =moddw_L((yy * A - xx * B),d); } } sortA_L(N, X, Y); for(i=0;i<N;i++){ if(i==0 || X[i]!=X[i-1] || Y[i]!=Y[i-1]){ res++; } } wt_L(res); wt_L('\n'); return 0; } // cLay varsion 20190706-1 // --- original code --- // int N; // ll A, B, C, D, X[1d5], Y[1d5]; // // { // int i, j, k; // ll d, xx, yy; // int res = 0; // // rd(A,B,C,D,N,(X,Y)(N)); // d = A*D - B*C; // if(d < 0) d = -d; // // if(d == 0){ // if(A==C==0){ // i = gcd(B, D); // A = 0; // B = i; // } else { // i = gcd(A, C); // B = B * i / A; // A = i; // } // // rep(k,N){ // i = if[A, X[k]/A, Y[k]/B]; // X[k] -= A * i; // Y[k] -= B * i; // } // } else { // rep(k,N){ // xx = X[k]; // yy = Y[k]; // X[k] = (xx * D - yy * C) %% d; // Y[k] = (yy * A - xx * B) %% d; // } // } // // sortA(N, X, Y); // rep(i,N) if(i==0 || X[i]!=X[i-1] || Y[i]!=Y[i-1]) res++; // wt(res); // }