結果
問題 | No.1457 ツブ消ししとるなHard |
ユーザー | kotatsugame |
提出日時 | 2021-03-31 21:16:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 20 ms / 2,000 ms |
コード長 | 611 bytes |
コンパイル時間 | 723 ms |
コンパイル使用メモリ | 72,788 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 04:28:14 |
合計ジャッジ時間 | 1,590 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 19 ms
5,376 KB |
testcase_05 | AC | 19 ms
5,376 KB |
testcase_06 | AC | 20 ms
5,376 KB |
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 | 3 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 9 ms
5,376 KB |
testcase_13 | AC | 5 ms
5,376 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 6 ms
5,376 KB |
testcase_16 | AC | 7 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 17 ms
5,376 KB |
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; long 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 { long ans=0; for(int i=st+!st;i<=M;i++)ans+=dp[i][off]; cout<<ans<<endl; } }