結果
問題 | No.496 ワープクリスタル (給料日前編) |
ユーザー | kurenai3110 |
提出日時 | 2017-03-24 22:42:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 869 bytes |
コンパイル時間 | 665 ms |
コンパイル使用メモリ | 77,132 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 22:06:52 |
合計ジャッジ時間 | 1,962 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 5 ms
5,376 KB |
testcase_09 | AC | 5 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 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 6 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 3 ms
5,376 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <map> #include <algorithm> using namespace std; int DP[51][51]; int main() { int Gx, Gy, N, F;cin >> Gx >> Gy >> N >> F; vector<int>x(N), y(N), c(N); for (int i = 0;i < N;i++) { cin >> x[i] >> y[i] >> c[i]; } map<pair<int, int>, int>M; M[make_pair(0, 0)] = 0; for (int i = 0;i < N;i++) { for (auto itr = M.begin();itr != M.end();itr++) { pair<int, int> pos = itr->first; pos.first += x[i];pos.second += y[i]; if (pos.first > Gx || pos.second > Gy)continue; if (M.find(pos) == M.end())M[pos] = itr->second + c[i]; else M[pos] = min(M[pos], itr->second + c[i]); } } int ans = 1e8; for (auto itr = M.begin();itr != M.end();itr++) { ans = min(ans, itr->second + F*abs(itr->first.first - Gx) + F*abs(itr->first.second - Gy)); } cout << ans << endl; return 0; }