結果
問題 | No.496 ワープクリスタル (給料日前編) |
ユーザー | conf |
提出日時 | 2017-03-24 22:33:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 518 bytes |
コンパイル時間 | 536 ms |
コンパイル使用メモリ | 67,072 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-06 03:06:05 |
合計ジャッジ時間 | 1,267 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 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 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> using namespace std; int main(){ int Gx,Gy,N,F; cin>>Gx>>Gy>>N>>F; int DP[Gx+1][Gy+1]; for(int y=0;y<=Gy;y++){ for(int x=0;x<=Gx;x++){ DP[x][y]=(x+y)*F; } } for(int i=0;i<N;i++){ int x,y,c; cin>>x>>y>>c; for(int Y=0;Y+y<=Gy;Y++){ for(int X=0;X+x<=Gx;X++){ DP[X+x][Y+y]=min(DP[X+x][Y+y],DP[X][Y]+c); } } } cout<<DP[Gx][Gy]<<endl; return 0; }