結果
問題 | No.873 バイナリ、ヤバいなり!w |
ユーザー | beet |
提出日時 | 2019-08-30 22:07:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,592 bytes |
コンパイル時間 | 2,260 ms |
コンパイル使用メモリ | 207,748 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-24 01:36:14 |
合計ジャッジ時間 | 4,243 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 10 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 3 ms
6,940 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} //INSERT ABOVE HERE void print01(Int len){ for(Int i=0;i<len;i++) cout<<(i&1); } void print10(Int len){ for(Int i=0;i<len;i++) cout<<(~i&1); } signed main(){ Int n; cin>>n; using P = pair<Int, Int>; vector<P> vp; for(Int i=1;i*i<=n;i++) vp.emplace_back(i*i,i); const Int INF = 1e15; vector<Int> dp(n+1,INF); dp[0]=0; for(auto p:vp) for(Int i=0;i+p.first<=n;i++) chmin(dp[i+p.first],dp[i]+p.second); Int val=n,state=0; while(val){ //cout<<l1<<" "<<l2<<endl; if(state==0){ Int l1=-1,l2=INF; for(auto p:vp){ if(val<p.first) continue; if(dp[val]!=dp[val-p.first]+p.second) continue; if(p.first&1) chmax(l1,p.second); else chmin(l2,p.second); } if(l1==-1){ print01(l2); val-=l2*l2; state^=1; }else{ print01(l1); val-=l1*l1; state^=0; } }else{ Int l1=INF,l2=-1; for(auto p:vp){ if(val<p.first) continue; if(dp[val]!=dp[val-p.first]+p.second) continue; if(~p.first&1) chmax(l2,p.second); else chmin(l1,p.second); } if(l2!=-1){ print10(l2); val-=l2*l2; state^=1; }else{ print10(l1); val-=l1*l1; state^=0; } } } cout<<endl; return 0; }