結果
問題 | No.1 道のショートカット |
ユーザー | ReERishun |
提出日時 | 2020-05-09 01:08:21 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,678 bytes |
コンパイル時間 | 226 ms |
コンパイル使用メモリ | 30,336 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-08 05:22:57 |
合計ジャッジ時間 | 1,149 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 0 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 1 ms
5,376 KB |
testcase_43 | AC | 1 ms
5,376 KB |
ソースコード
#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'; } } return; } int search(int S_num, int cost, int timer) { for (int i = 0;i < city.city_num; i++) { if (city.S_city[i] == S_num) { cost += city.cost[i]; timer += city.time[i]; if (city.money < cost) { // コストオーバーの場合は対象外 cost -= city.cost[i]; timer -= city.time[i]; break; }else if (city.T_city[i] == city.city_num) { // 町まで到着した場合 // 記録より速いか? if (timer < city.ans) city.ans = timer; cost -= city.cost[i]; timer -= city.time[i]; break; }else { search(city.T_city[i], cost, timer); cost -= city.cost[i]; timer -= city.time[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; search(1, 0, 0); if (city.ans == 1500001) printf("-1"); else printf("%d", city.ans); return 0; }