結果
問題 | No.1 道のショートカット |
ユーザー | ReERishun |
提出日時 | 2020-05-09 02:48:04 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,992 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 30,080 KB |
実行使用メモリ | 8,604 KB |
最終ジャッジ日時 | 2024-07-08 05:23:57 |
合計ジャッジ時間 | 7,007 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 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 | 3 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 17 ms
6,944 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'; } } } int search(int S_num, int cost, int timer) { for (int i = city.road_num - 1;i >= 0; i--) { if (city.T_city[i] == S_num) { if (city.money >= cost + city.cost[i]) { // コストオーバーの場合は対象外 if (city.S_city[i] == 1) { // 町まで到着した場合 if (timer + city.time[i] < city.ans) // 記録より速いか? city.ans = timer + city.time[i]; }else { search(city.S_city[i], cost + city.cost[i], timer + city.time[i]); } } } // printf("%d\n", i); } return 0; } 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; /* printf("%d\n", city.city_num); printf("%d\n", city.money); printf("%d\n", city.road_num); for (int i = 0; i < city.road_num; i++) printf("%d ", city.S_city[i]); printf("\n"); for (int i = 0; i < city.road_num; i++) printf("%d ", city.T_city[i]); printf("\n"); for (int i = 0; i < city.road_num; i++) printf("%d ", city.cost[i]); printf("\n"); for (int i = 0; i < city.road_num; i++) printf("%d ", city.time[i]); printf("\n"); */ search(city.city_num, 0, 0); if (city.ans == 1500001) printf("-1"); else printf("%d", city.ans); return 0; }