結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 26 WA * 1 TLE * 22
権限があれば一括ダウンロードができます

ソースコード

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