結果
問題 | No.496 ワープクリスタル (給料日前編) |
ユーザー | nenuon |
提出日時 | 2017-06-23 17:41:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,165 bytes |
コンパイル時間 | 856 ms |
コンパイル使用メモリ | 90,860 KB |
実行使用メモリ | 11,480 KB |
最終ジャッジ日時 | 2024-10-03 04:12:53 |
合計ジャッジ時間 | 3,776 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 10 ms
11,480 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 247 ms
11,412 KB |
testcase_09 | AC | 245 ms
11,424 KB |
testcase_10 | AC | 4 ms
6,816 KB |
testcase_11 | AC | 5 ms
6,816 KB |
testcase_12 | AC | 19 ms
6,820 KB |
testcase_13 | AC | 27 ms
6,820 KB |
testcase_14 | AC | 49 ms
6,816 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 47 ms
7,524 KB |
testcase_19 | WA | - |
testcase_20 | AC | 31 ms
7,832 KB |
testcase_21 | AC | 14 ms
6,820 KB |
testcase_22 | WA | - |
testcase_23 | AC | 241 ms
11,360 KB |
testcase_24 | AC | 239 ms
11,304 KB |
testcase_25 | AC | 239 ms
11,460 KB |
testcase_26 | AC | 245 ms
11,468 KB |
ソースコード
#include <algorithm> #include <cstdio> #include <iostream> #include <map> #include <cmath> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <vector> #include <stdlib.h> #include <stdio.h> #include <bitset> using namespace std; #define FOR(I,A,B) for(int I = (A); I < (B); ++I) int main(){ int gy,gx,n,f; cin>>gx>>gy>>n>>f; int x[n],y[n],c[n]; FOR(i,0,n){ cin >> x[i] >> y[i] >> c[i]; } int dp[201][gy+1][gx+1]; FOR(i,0,201){ FOR(j,0,gy+1){ FOR(k,0,gx+1){ dp[i][j][k] = 9999999; } } } dp[0][0][0] = 0; FOR(i,0,200){ FOR(j,0,gy+1){ FOR(k,0,gx+1){ if(dp[i][j][k]==9999999) continue; dp[i+1][j][k] = min(dp[i+1][j][k], dp[i][j][k]); if(j+1 <= gy) dp[i+1][j+1][k] = min(dp[i+1][j+1][k], dp[i][j][k] + f); if(k+1 <= gx) dp[i+1][j][k+1] = min(dp[i+1][j][k+1], dp[i][j][k] + f); FOR(l,0,n){ int nx = k + x[l], ny = j + y[l]; if(nx > gx || ny > gy) continue; dp[i+1][ny][nx] = min(dp[i+1][ny][nx], dp[i][j][k] + c[l]); } } } } cout << dp[200][gy][gx] << endl; return 0; }