結果
問題 | No.1 道のショートカット |
ユーザー | ReERishun |
提出日時 | 2020-05-09 01:31:13 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,498 bytes |
コンパイル時間 | 103 ms |
コンパイル使用メモリ | 30,336 KB |
実行使用メモリ | 8,732 KB |
最終ジャッジ日時 | 2024-07-08 05:23:13 |
合計ジャッジ時間 | 6,611 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 0 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 8 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 14 ms
6,940 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
#include<stdio.h> struct city_info { int city_num; int money; int road_num; int S_city[1500]; int T_city[1500]; int cost[1500]; int time[1500]; int ans; }; struct city_info city; void numin(int index, int numBox[1500]) { char str; for (int i = 0; i<index; i++) numBox[i] = 0; for (int i = 0; i<index; i++) { for (int j = 0;; j++) { str = getchar(); if (str == '\n' && i == 0) { i = -1; break; } else if (str == '\n' && i != 0) { i = index; break; } else if (str < '0' || str > '9') { break; } else numBox[i] = numBox[i] * 10 + (int)str - (int)'0'; } } } void search(int S_num, int cost, int timer) { for (int i = 0;i < city.road_num; i++) { if (city.S_city[i] == S_num) { if (city.money >= cost + city.cost[i]) { // コストオーバーの場合は対象外 if (city.T_city[i] == city.city_num) { // 町まで到着した場合 if (timer + city.time[i] < city.ans) // 記録より速いか? city.ans = timer + city.time[i]; }else { search(city.T_city[i], cost + city.cost[i], timer + city.time[i]); } } } } } int main() { scanf("%d", &city.city_num); scanf("%d", &city.money); scanf("%d", &city.road_num); numin(city.road_num, city.S_city); numin(city.road_num, city.T_city); numin(city.road_num, city.cost); numin(city.road_num, city.time); city.ans = 1500001; search(1, 0, 0); if (city.ans == 1500001) printf("-1"); else printf("%d", city.ans); return 0; }