結果
問題 | No.1 道のショートカット |
ユーザー | assy1028 |
提出日時 | 2015-03-20 18:26:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 20 ms / 5,000 ms |
コード長 | 1,340 bytes |
コンパイル時間 | 868 ms |
コンパイル使用メモリ | 90,508 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 16:11:37 |
合計ジャッジ時間 | 2,077 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 | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 9 ms
5,376 KB |
testcase_12 | AC | 16 ms
5,376 KB |
testcase_13 | AC | 14 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 | 3 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 20 ms
5,376 KB |
testcase_24 | AC | 19 ms
5,376 KB |
testcase_25 | AC | 4 ms
5,376 KB |
testcase_26 | AC | 3 ms
5,376 KB |
testcase_27 | AC | 20 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 4 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | AC | 3 ms
5,376 KB |
testcase_32 | AC | 5 ms
5,376 KB |
testcase_33 | AC | 3 ms
5,376 KB |
testcase_34 | AC | 13 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 3 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
testcase_38 | AC | 1 ms
5,376 KB |
testcase_39 | AC | 2 ms
5,376 KB |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | AC | 1 ms
5,376 KB |
testcase_43 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:50:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 50 | scanf("%d%d%d", &n, &c, &v); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~ main.cpp:52:38: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 52 | for (int i = 0; i < v; i++) scanf("%d", &s[i]); | ~~~~~^~~~~~~~~~~~~ main.cpp:53:38: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 53 | for (int i = 0; i < v; i++) scanf("%d", &t[i]); | ~~~~~^~~~~~~~~~~~~ main.cpp:54:38: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 54 | for (int i = 0; i < v; i++) scanf("%d", &y[i]); | ~~~~~^~~~~~~~~~~~~ main.cpp:55:38: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 55 | for (int i = 0; i < v; i++) scanf("%d", &m[i]); | ~~~~~^~~~~~~~~~~~~
ソースコード
#include <algorithm> #include <iostream> #include <cstdio> #include <map> #include <numeric> #include <cmath> #include <set> #include <sstream> #include <string> #include <vector> #include <queue> #include <complex> #include <string.h> using namespace std; #define endl '\n' #define all(v) (v).begin(), (v).end() #define uniq(v) (v).erase(unique((v).begin(), (v).end()), (v).end()) typedef long long ll; typedef pair<int, int> P; typedef unsigned int uint; const int inf = 1000000009; struct edge { int to, cost, dis; }; vector<edge> g[55]; map<P, int> memo; int dfs(int k, int c, int n) { if (k == n) return 0; P ps = P(k, c); if (memo.count(ps) == 0) { int res = inf; for (int i = 0; i < g[k].size(); i++) { edge e = g[k][i]; if (c >= e.cost) res = min(res, e.dis + dfs(e.to, c-e.cost, n)); } memo[ps] = res; } return memo[ps]; } int main() { int n, c, v; scanf("%d%d%d", &n, &c, &v); int s[v], t[v], y[v], m[v]; for (int i = 0; i < v; i++) scanf("%d", &s[i]); for (int i = 0; i < v; i++) scanf("%d", &t[i]); for (int i = 0; i < v; i++) scanf("%d", &y[i]); for (int i = 0; i < v; i++) scanf("%d", &m[i]); for (int i = 0; i < v; i++) { g[s[i]].push_back(edge{t[i], y[i], m[i]}); } int res = dfs(1, c, n); printf("%d\n", res < inf ? res : -1); }