結果
問題 | No.1 道のショートカット |
ユーザー | maruyuki95 |
提出日時 | 2020-05-18 17:42:02 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 246 ms / 5,000 ms |
コード長 | 2,439 bytes |
コンパイル時間 | 2,378 ms |
コンパイル使用メモリ | 78,128 KB |
実行使用メモリ | 46,140 KB |
最終ジャッジ日時 | 2024-07-20 16:48:10 |
合計ジャッジ時間 | 11,426 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
40,904 KB |
testcase_01 | AC | 135 ms
41,328 KB |
testcase_02 | AC | 129 ms
40,868 KB |
testcase_03 | AC | 139 ms
40,972 KB |
testcase_04 | AC | 132 ms
41,188 KB |
testcase_05 | AC | 135 ms
41,244 KB |
testcase_06 | AC | 133 ms
41,472 KB |
testcase_07 | AC | 145 ms
41,492 KB |
testcase_08 | AC | 246 ms
46,140 KB |
testcase_09 | AC | 225 ms
44,472 KB |
testcase_10 | AC | 233 ms
45,500 KB |
testcase_11 | AC | 222 ms
45,464 KB |
testcase_12 | AC | 243 ms
45,820 KB |
testcase_13 | AC | 233 ms
45,984 KB |
testcase_14 | AC | 172 ms
41,620 KB |
testcase_15 | AC | 128 ms
41,276 KB |
testcase_16 | AC | 192 ms
42,576 KB |
testcase_17 | AC | 128 ms
40,996 KB |
testcase_18 | AC | 173 ms
41,764 KB |
testcase_19 | AC | 169 ms
41,576 KB |
testcase_20 | AC | 193 ms
42,672 KB |
testcase_21 | AC | 172 ms
42,004 KB |
testcase_22 | AC | 152 ms
41,764 KB |
testcase_23 | AC | 238 ms
46,072 KB |
testcase_24 | AC | 223 ms
45,468 KB |
testcase_25 | AC | 187 ms
42,448 KB |
testcase_26 | AC | 182 ms
42,200 KB |
testcase_27 | AC | 232 ms
45,604 KB |
testcase_28 | AC | 132 ms
41,176 KB |
testcase_29 | AC | 237 ms
45,700 KB |
testcase_30 | AC | 185 ms
43,304 KB |
testcase_31 | AC | 205 ms
43,960 KB |
testcase_32 | AC | 215 ms
44,440 KB |
testcase_33 | AC | 207 ms
43,780 KB |
testcase_34 | AC | 228 ms
45,568 KB |
testcase_35 | AC | 204 ms
45,196 KB |
testcase_36 | AC | 221 ms
45,036 KB |
testcase_37 | AC | 220 ms
45,028 KB |
testcase_38 | AC | 149 ms
41,520 KB |
testcase_39 | AC | 194 ms
42,188 KB |
testcase_40 | AC | 185 ms
42,804 KB |
testcase_41 | AC | 161 ms
41,752 KB |
testcase_42 | AC | 127 ms
41,108 KB |
testcase_43 | AC | 127 ms
41,076 KB |
ソースコード
import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int cityNum = sc.nextInt(); int money = sc.nextInt(); int roadNum = sc.nextInt(); List<Integer> cityS = new ArrayList<Integer>(); for (int i = 0; i < roadNum; i++) { cityS.add(sc.nextInt()); } List<Integer> cityT = new ArrayList<Integer>(); for (int i = 0; i < roadNum; i++) { cityT.add(sc.nextInt()); } List<Integer> costs = new ArrayList<Integer>(); for (int i = 0; i < roadNum; i++) { costs.add(sc.nextInt()); } List<Integer> times = new ArrayList<Integer>(); for (int i = 0; i < roadNum; i++) { times.add(sc.nextInt()); } int ret = new Main().execute(cityNum, money, roadNum, cityS, cityT, costs, times); System.out.println(ret); } private int execute(int cityNum, int money, int roadNum, List<Integer> cityS, List<Integer> cityT, List<Integer> costs, List<Integer> times) { searchRoute(1, cityNum, cityS, cityT, money, costs, 0, times); if(minTime == null) { return -1; } return minTime.intValue(); } private Integer minTime = null; private void searchRoute(int location, int goal, List<Integer> cityS, List<Integer> cityT, int money, List<Integer> costs, int totalTime, List<Integer> times) { List<Integer> roadNums = filterRoadNumsWithLocation(cityS, location); // 道の入り口が現在地と同じ道のみに絞る for (Integer roadNum : roadNums) { Integer cost = costs.get(roadNum); if (money < cost) { // 資金が足りないのでスキップ continue; } int afterTime = totalTime + times.get(roadNum); if (minTime != null && minTime.intValue() <= afterTime) { // 既に最短時間よりも時間がかかっているためスキップ continue; } Integer afterLocation = cityT.get(roadNum); if (goal == afterLocation) { minTime = afterTime; continue; }else { // 道の出口が目的地ではないため、再帰して探索 int afterMoney = money - cost; searchRoute(afterLocation, goal, cityS, cityT, afterMoney, costs, afterTime, times); } } } private List<Integer> filterRoadNumsWithLocation(List<Integer> cityS, int location) { List<Integer> ret = new ArrayList<Integer>(); for (int i = 0; i < cityS.size(); i++) { if (cityS.get(i) == location) { ret.add(i); } } return ret; } }