結果
問題 | No.2207 pCr検査 |
ユーザー | HIcoder |
提出日時 | 2024-10-06 22:54:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,908 ms / 3,000 ms |
コード長 | 1,663 bytes |
コンパイル時間 | 1,163 ms |
コンパイル使用メモリ | 120,260 KB |
実行使用メモリ | 237,628 KB |
最終ジャッジ日時 | 2024-10-06 22:54:41 |
合計ジャッジ時間 | 33,228 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 103 ms
159,476 KB |
testcase_01 | AC | 92 ms
159,628 KB |
testcase_02 | AC | 950 ms
235,528 KB |
testcase_03 | AC | 679 ms
202,000 KB |
testcase_04 | AC | 653 ms
216,184 KB |
testcase_05 | AC | 1,233 ms
230,944 KB |
testcase_06 | AC | 580 ms
227,692 KB |
testcase_07 | AC | 473 ms
201,504 KB |
testcase_08 | AC | 357 ms
182,756 KB |
testcase_09 | AC | 928 ms
215,244 KB |
testcase_10 | AC | 289 ms
201,604 KB |
testcase_11 | AC | 817 ms
213,852 KB |
testcase_12 | AC | 1,294 ms
222,972 KB |
testcase_13 | AC | 774 ms
196,992 KB |
testcase_14 | AC | 201 ms
168,816 KB |
testcase_15 | AC | 1,483 ms
234,152 KB |
testcase_16 | AC | 711 ms
192,856 KB |
testcase_17 | AC | 1,151 ms
218,264 KB |
testcase_18 | AC | 865 ms
206,012 KB |
testcase_19 | AC | 459 ms
182,220 KB |
testcase_20 | AC | 713 ms
196,132 KB |
testcase_21 | AC | 1,599 ms
235,324 KB |
testcase_22 | AC | 1,892 ms
237,568 KB |
testcase_23 | AC | 1,908 ms
237,604 KB |
testcase_24 | AC | 240 ms
172,636 KB |
testcase_25 | AC | 690 ms
192,020 KB |
testcase_26 | AC | 653 ms
189,744 KB |
testcase_27 | AC | 1,173 ms
219,244 KB |
testcase_28 | AC | 1,598 ms
237,628 KB |
testcase_29 | AC | 1,718 ms
237,568 KB |
testcase_30 | AC | 1,639 ms
237,544 KB |
testcase_31 | AC | 1,634 ms
237,616 KB |
ソースコード
#include<iostream> #include<string> #include<queue> #include<vector> #include<cassert> #include<random> #include<set> #include<map> #include<cassert> #include<unordered_map> #include<bitset> #include<numeric> #include<algorithm> using namespace std; typedef long long ll; const int inf=1<<30; const ll INF=1LL<<62; typedef pair<int,ll> P; typedef pair<int,P> PP; const ll MOD=998244353; int main(){ int k; cin>>k; const int MAXP=10000000; vector<ll> p(MAXP),e(MAXP+1); ll cp=0; for(int i=0;i<k;i++){ ll pp,ee; cin>>pp>>ee; e[pp]=ee; cp=pp; } vector<ll> mpf(cp+1); for(int i=2;i<=cp;i++){ if(mpf[i]==0){ for(int j=i;j<=cp;j+=i){ mpf[j]=i;//jはiで割れる } } } ll dif=k; for(ll r=1;r<=cp/2;r++){ // cp C r を試す // cp!/(r!(cp-r)!)を試す for(ll tmp=cp-r+1;tmp!=1;tmp/=mpf[tmp]){ // cp!/tmp! を試す. tmp=cp-r+1,cp-r+2,...,cp //tmpを素因数分解する if(e[mpf[tmp]]==0){ dif++; } e[mpf[tmp]]--; if(e[mpf[tmp]]==0){ dif--; } } for(ll tmp=r;tmp!=1;tmp/=mpf[tmp]){ //cp C tmpを試す. tmp=1,2,3,...,r if(e[mpf[tmp]]==0){ dif++; } e[mpf[tmp]]++; if(e[mpf[tmp]]==0){ dif--; } } if(dif==0){ cout<<cp<<' '<<r<<endl; return 0; } } cout<<-1<<' '<<-1<<endl; }