結果
問題 | No.1257 変わった平均値 |
ユーザー | abc3 |
提出日時 | 2020-10-16 23:52:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,254 bytes |
コンパイル時間 | 1,752 ms |
コンパイル使用メモリ | 169,340 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-21 01:05:04 |
合計ジャッジ時間 | 2,676 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <math.h> #include <iomanip> #include <cstdint> template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const int INF=1001001001; const int mod = 1000000007; int main() { vector<int>p(3),q(3); cin>>p[0]>>p[1]>>p[2]>>q[0]>>q[1]>>q[2]; if(p[0]==p[1]&&p[1]==p[2]){cout<<"No"<<endl;return 0;} bool ok=true; for(int i=0;i<2;i++){ if(p[i]!=q[i]&&p[i]<=p[i+1]){ ok=false; } } if(!ok){ cout<<2<<endl; } vector<int>k(3); for(int i=0;i<3;i++){ while(p[i]<q[i]){ p[i]*=2; k[i]++; } if(p[i]!=q[i]){cout<<"No"<<endl;return 0;} } int MAX=0,r=0,sum=0; for(int i=0;i<3;i++){ sum+=k[i]; if(MAX<k[i]){MAX=k[i];r=i;} } if(sum-MAX!=MAX){cout<<"No"<<endl;return 0;} for(int i=0;i<2;i++){ if(k[i]==0){continue;} for(int j=0;j<k[i];j++){ if(k[i+1]>0){ int c=3; cout<<1<<" "<<c<<endl<<1<<" "<<c<<endl; k[i+1]--; } else if(i==0&&k[i+2]>0){ int c=2; cout<<1<<" "<<c<<endl<<1<<" "<<c<<endl; k[i+2]--; } } } return 0; }