結果
問題 | No.974 最後の日までに |
ユーザー | kotatsugame |
提出日時 | 2020-01-18 00:30:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 922 bytes |
コンパイル時間 | 1,007 ms |
コンパイル使用メモリ | 84,140 KB |
実行使用メモリ | 13,760 KB |
最終ジャッジ日時 | 2024-06-26 02:59:48 |
合計ジャッジ時間 | 6,115 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 98 ms
12,924 KB |
testcase_01 | AC | 100 ms
12,932 KB |
testcase_02 | AC | 101 ms
12,128 KB |
testcase_03 | AC | 100 ms
11,608 KB |
testcase_04 | AC | 99 ms
12,528 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 89 ms
12,020 KB |
testcase_08 | AC | 89 ms
12,288 KB |
testcase_09 | AC | 89 ms
12,500 KB |
testcase_10 | AC | 88 ms
11,932 KB |
testcase_11 | AC | 92 ms
12,220 KB |
testcase_12 | AC | 92 ms
11,676 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 107 ms
11,936 KB |
testcase_20 | AC | 108 ms
11,788 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,944 KB |
testcase_27 | WA | - |
testcase_28 | AC | 93 ms
11,776 KB |
testcase_29 | AC | 2 ms
6,944 KB |
testcase_30 | WA | - |
testcase_31 | AC | 2 ms
6,940 KB |
testcase_32 | AC | 2 ms
6,944 KB |
testcase_33 | WA | - |
testcase_34 | AC | 100 ms
11,996 KB |
testcase_35 | WA | - |
testcase_36 | AC | 2 ms
6,940 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 2 ms
6,944 KB |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 92 ms
12,132 KB |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | AC | 2 ms
6,940 KB |
testcase_50 | AC | 2 ms
6,944 KB |
testcase_51 | AC | 2 ms
6,944 KB |
コンパイルメッセージ
main.cpp:18:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 18 | main() | ^~~~
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; int W; long A[55],B[55],C[55]; vector<pair<long,long> >X; void dfs(int d,int lim,long x,long y) { if(d==lim) { X.push_back(make_pair(y,x)); return; } dfs(d+1,lim,x,y+A[d]); if(d+2<=lim)dfs(d+2,lim,x+B[d+1],y-C[d+1]); } main() { cin>>W; for(int i=0;i<W;i++)cin>>A[i]>>B[i]>>C[i]; if(W==1) { cout<<0<<endl; return 0; } long ans=0; for(int mid:(vector<int>){W/2-1,W/2}) { dfs(0,mid,0,0); sort(X.rbegin(),X.rend()); vector<pair<long,long> >A; long pre=0; for(pair<long,long>p:X) { if(pre<p.second) { pre=p.second; A.push_back(p); } } sort(A.begin(),A.end()); X.clear(); dfs(mid,W,0,0); for(pair<long,long>p:X) { vector<pair<long,long> >::iterator it=lower_bound(A.begin(),A.end(),make_pair(-p.first,0L)); if(it!=A.end())ans=max(ans,p.second+it->second); } } cout<<ans<<endl; }