結果
問題 | No.2519 Coins in Array |
ユーザー | gucci0512 |
提出日時 | 2023-10-27 23:15:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,568 bytes |
コンパイル時間 | 3,766 ms |
コンパイル使用メモリ | 231,804 KB |
実行使用メモリ | 8,052 KB |
最終ジャッジ日時 | 2024-09-25 15:14:06 |
合計ジャッジ時間 | 10,976 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 5 ms
5,376 KB |
testcase_02 | AC | 5 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 4 ms
5,376 KB |
testcase_15 | AC | 5 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 4 ms
5,376 KB |
testcase_18 | AC | 4 ms
5,376 KB |
testcase_19 | AC | 4 ms
5,376 KB |
testcase_20 | AC | 4 ms
5,376 KB |
testcase_21 | AC | 4 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 284 ms
7,936 KB |
testcase_24 | AC | 285 ms
7,892 KB |
testcase_25 | AC | 4 ms
5,376 KB |
testcase_26 | AC | 5 ms
5,376 KB |
testcase_27 | AC | 289 ms
8,008 KB |
testcase_28 | AC | 273 ms
8,052 KB |
testcase_29 | AC | 282 ms
8,032 KB |
testcase_30 | AC | 248 ms
7,756 KB |
testcase_31 | AC | 46 ms
5,376 KB |
testcase_32 | AC | 138 ms
6,400 KB |
testcase_33 | AC | 195 ms
7,168 KB |
testcase_34 | AC | 96 ms
5,888 KB |
testcase_35 | AC | 183 ms
6,948 KB |
testcase_36 | AC | 79 ms
5,632 KB |
testcase_37 | AC | 37 ms
5,376 KB |
testcase_38 | AC | 155 ms
6,528 KB |
testcase_39 | AC | 90 ms
5,888 KB |
testcase_40 | AC | 280 ms
7,944 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> // url #define rep(i,a,b) for(int i=a;i<b;i++) #define rrep(i,a,b) for(int i=b-1;i>=a;i--) #define all(x) (x).begin(),(x).end() #define pb(x) push_back(x); template<class T>bool chmax(T &a, const T &b) { if (a<b) { a = b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a = b; return 1; } return 0; } typedef long long ll; typedef long double lld; using namespace std; using namespace atcoder; const ll inf=(1ll<<60); const int eratosSize=201010; int eratos[eratosSize]; void Init(){ rep(i,0,eratosSize)eratos[i]=-1; eratos[0]=1; eratos[1]=1; rep(i,2,eratosSize){ if(eratos[i]!=-1)continue; eratos[i]=i; int x=i*2; while(x<eratosSize){ if(eratos[x]==-1){ eratos[x]=i; } x+=i; } } } int idx[eratosSize]; typedef pair<ll,int> P; int main(void){ ios::sync_with_stdio(false); cin.tie(nullptr); // int x,y;cin >> x >> y; // rep(z,1,x*y+1){ // int a=0; // cout << z << " "; // while(a*x<=z){ // int b=z-a*x; // if(b%y==0){ // cout << a << " " << b/y << endl; // break; // } // a++; // } // if(a*x>z){ // cout << -1 << " " << -1 << endl; // } // } Init(); fill(idx,idx+eratosSize,-1); int N;cin >> N; vector<P> A(N); int a=-1,b=-1; int one=-1; rep(i,0,N){ cin >> A[i].first; A[i].second=i; if(A[i].first<=1)one=i; if(a!=-1)continue; int tmp=A[i].first; while(tmp>1){ int p=eratos[tmp]; if(idx[p]==-1){ idx[p]=i; } else if(idx[p]!=i){ a=idx[p]; b=i; break; } while(tmp%p==0){ tmp/=p; } } } if(a!=-1){ cout << 0 << endl; cout << a+1 << " " << b+1 << endl; rrep(i,1,N-1){ cout << 1 << " " << i+1 << endl; } } else if(one!=-1){ cout << 0 << endl; cout << one+1 << " " << 1 << endl; rrep(i,1,N-1){ cout << 1 << " " << i+1 << endl; } } else if(idx[2]!=-1&&N>=3){ int x=-1,y=-1; rep(i,0,N){ if(A[i].first==2)continue; if(x==-1){ x=i; } else{ y=i; } } cout << 0 << endl; cout << x+1 << " " << y+1 << endl; int z=idx[2]; if(x<z&&y<z)z-=2; else if(x<z||y<z)z--; cout << z+1 << " " << N-1 << endl; rrep(i,1,N-2){ cout << 1 << " " << i+1 << endl; } } else if(N>=4){ cout << 0 << endl; cout << N-1 << " " << N << endl; cout << N-3 << " " << N-2 << endl; rrep(i,1,N-2){ cout << 1 << " " << i+1 << endl; } } else{ int x=-1,y=-1; ll X=inf,Y=inf; rep(j,0,N){ if(chmin(X,A[j].first)){ x=j; } } rep(j,0,N){ if(j==x)continue; if(chmin(Y,A[j].first)){ y=j; } } int w=3-x-y; ll z=(A[x].first-1)*(A[y].first-1); z=(z-1)*(A[w].first-1); cout << z << endl; cout << x+1 << " " << y+1 << endl; cout << 1 << " " << 2 << endl; } }