結果

問題 No.1023 Cyclic Tour
ユーザー htensaihtensai
提出日時 2020-04-30 10:28:34
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,209 bytes
コンパイル時間 2,339 ms
コンパイル使用メモリ 78,272 KB
実行使用メモリ 166,924 KB
最終ジャッジ日時 2024-12-14 16:37:55
合計ジャッジ時間 114,372 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
46,684 KB
testcase_01 AC 137 ms
115,124 KB
testcase_02 AC 119 ms
45,824 KB
testcase_03 AC 109 ms
114,672 KB
testcase_04 AC 1,178 ms
89,772 KB
testcase_05 AC 1,116 ms
76,828 KB
testcase_06 AC 1,188 ms
90,504 KB
testcase_07 AC 1,213 ms
77,128 KB
testcase_08 AC 1,204 ms
87,320 KB
testcase_09 AC 1,146 ms
74,696 KB
testcase_10 AC 1,124 ms
87,352 KB
testcase_11 TLE -
testcase_12 AC 1,938 ms
83,316 KB
testcase_13 AC 1,605 ms
71,336 KB
testcase_14 WA -
testcase_15 AC 1,789 ms
71,740 KB
testcase_16 AC 1,469 ms
91,100 KB
testcase_17 AC 1,491 ms
77,424 KB
testcase_18 AC 1,484 ms
90,708 KB
testcase_19 AC 1,591 ms
77,264 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 1,850 ms
90,568 KB
testcase_29 AC 1,518 ms
77,100 KB
testcase_30 AC 1,732 ms
89,852 KB
testcase_31 AC 1,539 ms
79,232 KB
testcase_32 AC 1,528 ms
94,488 KB
testcase_33 AC 1,596 ms
79,528 KB
testcase_34 AC 1,962 ms
149,516 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 1,758 ms
80,444 KB
testcase_38 AC 1,621 ms
72,988 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 1,694 ms
72,088 KB
testcase_44 AC 1,093 ms
73,412 KB
testcase_45 TLE -
testcase_46 AC 1,111 ms
88,824 KB
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        for (int i = 0; i < n; i++) {
            graph.add(new ArrayList<>());
        }
        for (int i = 0; i < m; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            int c = sc.nextInt();
            graph.get(a).add(b);
            if (c == 1) {
                graph.get(b).add(a);
            }
        }
        for (int i = 0; i < n; i++) {
            search(i, -1, new boolean[n]);
        }
        System.out.println("No");
    }
    
    static void search(int idx, int from, boolean[] visited) {
        if (visited[idx]) {
            System.out.println("Yes");
            System.exit(0);
        }
        visited[idx] = true;
        boolean flag = true;
        for (int x : graph.get(idx)) {
            if (x == from && flag) {
                flag = false;
               continue;
             }
            search(x, idx, visited);
        }
        visited[idx] = false;
    }
}
0