結果
問題 | No.1457 ツブ消ししとるなHard |
ユーザー | kotatsugame |
提出日時 | 2021-03-31 21:15:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 609 bytes |
コンパイル時間 | 800 ms |
コンパイル使用メモリ | 72,832 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 04:28:01 |
合計ジャッジ時間 | 1,683 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 8 ms
5,376 KB |
testcase_13 | AC | 5 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 5 ms
5,376 KB |
testcase_16 | AC | 5 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 8 | main() | ^~~~
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; int N,M,X,Y,Z; const int off=2525; int dp[51][off*2+1]; main() { cin>>N>>M>>X>>Y>>Z; int st=0; int ans=0; vector<int>T; for(int i=0;i<N;i++) { int A;cin>>A; if(A>=X) { ans+=A-Z; st++; } else if(A>Y)T.push_back(A-Z); } dp[st][ans+off]=1; for(int t:T) { for(int i=M-1;i>=st;i--) { for(int j=0;j<=off*2;j++) { if(j+t<=off*2&&j+t>=0)dp[i+1][j+t]+=dp[i][j]; } } } if(M<st)cout<<"Handicapped"<<endl; else { int ans=0; for(int i=st+!st;i<=M;i++)ans+=dp[i][off]; cout<<ans<<endl; } }