結果

問題 No.408 五輪ピック
ユーザー 37zigen37zigen
提出日時 2016-08-05 23:29:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,022 bytes
コンパイル時間 3,142 ms
コンパイル使用メモリ 80,280 KB
実行使用メモリ 78,444 KB
最終ジャッジ日時 2024-11-07 04:04:55
合計ジャッジ時間 23,539 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
46,640 KB
testcase_01 AC 119 ms
40,060 KB
testcase_02 AC 136 ms
41,336 KB
testcase_03 AC 140 ms
41,644 KB
testcase_04 AC 141 ms
41,508 KB
testcase_05 AC 644 ms
50,760 KB
testcase_06 AC 530 ms
50,500 KB
testcase_07 AC 641 ms
50,816 KB
testcase_08 AC 598 ms
50,092 KB
testcase_09 AC 585 ms
50,060 KB
testcase_10 AC 515 ms
49,916 KB
testcase_11 AC 546 ms
49,388 KB
testcase_12 AC 662 ms
51,120 KB
testcase_13 AC 621 ms
50,900 KB
testcase_14 AC 310 ms
48,424 KB
testcase_15 AC 645 ms
50,932 KB
testcase_16 AC 663 ms
50,872 KB
testcase_17 AC 645 ms
51,544 KB
testcase_18 AC 590 ms
50,568 KB
testcase_19 AC 745 ms
51,420 KB
testcase_20 AC 353 ms
48,968 KB
testcase_21 AC 299 ms
48,068 KB
testcase_22 AC 485 ms
50,292 KB
testcase_23 AC 689 ms
51,544 KB
testcase_24 WA -
testcase_25 AC 944 ms
60,544 KB
testcase_26 AC 703 ms
52,596 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package No400番台;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		solver();
	}

	static void solver() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		ArrayList<Integer>[] e = new ArrayList[n];
		for (int i = 0; i < n; i++) {
			e[i] = new ArrayList<>();
		}
		for (int i = 0; i < m; i++) {
			int a = sc.nextInt() - 1;
			int b = sc.nextInt() - 1;
			e[a].add(b);
			e[b].add(a);
		}
		boolean[] arrived=new boolean[n];
		dfs(0,0,arrived,0,e);
		System.out.println("NO");
	}
	static void dfs(int root, int p, boolean[] arrived, int depth, ArrayList<Integer>[] e) {
		if (depth == 4) {
			for (int v : e[p]) {
				if (root == v) {
					System.out.println("YES");
					System.exit(0);
				}
			}
		} else {
			for (int v : e[p]) {
				if (!arrived[v]) {
					boolean[] d = Arrays.copyOf(arrived, arrived.length);
					d[v] = true;
					dfs(root,v,d,depth+1,e);
				}
			}
		}
	}
}
0