結果
問題 | No.496 ワープクリスタル (給料日前編) |
ユーザー | どらら |
提出日時 | 2017-03-24 23:01:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,407 bytes |
コンパイル時間 | 1,740 ms |
コンパイル使用メモリ | 178,108 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 23:05:58 |
合計ジャッジ時間 | 2,646 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 5 ms
5,376 KB |
testcase_09 | AC | 6 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 | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 5 ms
5,376 KB |
testcase_23 | AC | 6 ms
5,376 KB |
testcase_24 | AC | 5 ms
5,376 KB |
testcase_25 | AC | 5 ms
5,376 KB |
testcase_26 | AC | 6 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; typedef unsigned long long ull; #define INF 10000000 struct ST { int x, y, c; }; int main(){ int Gx, Gy, N, F; cin >> Gx >> Gy >> N >> F; vector<ST> v; rep(i,N){ int x, y, c; cin >> x >> y >> c; v.push_back((ST){x,y,c}); } vector<vector<int>> cost(Gy+1, vector<int>(Gx+1,INF)); cost[0][0] = 0; rep(i,N){ vector<vector<int>> new_cost = cost; rep(y,cost.size()){ rep(x,cost[y].size()){ if(cost[y][x] != INF){ new_cost[y][x] = min(new_cost[y][x], cost[y][x]); if(x+v[i].x<cost[y].size() && y+v[i].y<cost.size()){ new_cost[y+v[i].y][x+v[i].x] = min(new_cost[y+v[i].y][x+v[i].x], cost[y][x] + v[i].c); } } } } rep(y,cost.size()){ rep(x,cost[y].size()){ if(y+1<cost.size()){ new_cost[y+1][x] = min(new_cost[y+1][x], new_cost[y][x]+F); } if(x+1<cost[y].size()){ new_cost[y][x+1] = min(new_cost[y][x+1], new_cost[y][x]+F); } } } cost = new_cost; } cout << cost[Gy][Gx] << endl; return 0; }