結果

問題 No.408 五輪ピック
ユーザー uafr_csuafr_cs
提出日時 2016-08-05 23:25:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,413 bytes
コンパイル時間 2,563 ms
コンパイル使用メモリ 78,320 KB
実行使用メモリ 61,564 KB
最終ジャッジ日時 2024-11-07 03:04:24
合計ジャッジ時間 22,032 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,404 KB
testcase_01 AC 121 ms
40,208 KB
testcase_02 AC 128 ms
41,112 KB
testcase_03 AC 130 ms
40,932 KB
testcase_04 AC 134 ms
41,260 KB
testcase_05 AC 794 ms
54,508 KB
testcase_06 AC 603 ms
53,496 KB
testcase_07 AC 699 ms
53,620 KB
testcase_08 AC 699 ms
52,588 KB
testcase_09 AC 673 ms
52,484 KB
testcase_10 AC 551 ms
51,876 KB
testcase_11 AC 576 ms
52,452 KB
testcase_12 AC 763 ms
56,588 KB
testcase_13 AC 732 ms
53,920 KB
testcase_14 AC 365 ms
50,124 KB
testcase_15 AC 756 ms
54,008 KB
testcase_16 AC 827 ms
53,900 KB
testcase_17 AC 807 ms
54,572 KB
testcase_18 AC 830 ms
55,144 KB
testcase_19 AC 808 ms
58,976 KB
testcase_20 AC 430 ms
51,424 KB
testcase_21 AC 333 ms
47,768 KB
testcase_22 AC 528 ms
53,488 KB
testcase_23 AC 899 ms
59,700 KB
testcase_24 WA -
testcase_25 AC 744 ms
54,308 KB
testcase_26 AC 898 ms
61,564 KB
testcase_27 AC 801 ms
54,296 KB
testcase_28 AC 626 ms
52,648 KB
testcase_29 AC 633 ms
52,524 KB
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int M = sc.nextInt();
		
		ArrayList<HashSet<Integer>> adj = new ArrayList<HashSet<Integer>>();
		for(int i = 0; i < N; i++){ adj.add(new HashSet<Integer>()); }
		
		for(int i = 0; i < M; i++){
			final int A = sc.nextInt() - 1;
			final int B = sc.nextInt() - 1;
			
			adj.get(A).add(B);
			adj.get(B).add(A);
		}
		//System.out.println(adj);
		
		ArrayList<HashSet<Integer>> to_1 = new ArrayList<HashSet<Integer>>();
		for(int i = 0; i < N; i++){ to_1.add(new HashSet<Integer>()); }
		
		for(int i = 1; i < N; i++){
			for(final int j : adj.get(i)){
				if(adj.get(j).contains(0)){
					to_1.get(i).add(j);
				}
			}
		}
		
		//System.out.println(to_1);
		
		for(int fst = 1; fst < N; fst++){
			for(final int snd : adj.get(fst)){
				final HashSet<Integer> fst_to_1 = to_1.get(fst);
				final HashSet<Integer> snd_to_1 = to_1.get(snd);
				
				//System.out.println(fst_to_1 + " " + snd_to_1);
				
				if(fst_to_1.isEmpty() || snd_to_1.isEmpty()){ continue; }
				
				if(!fst_to_1.equals(snd_to_1)){
					System.out.println("YES");
					return;
				}
			}
		}
		
		System.out.println("NO");
		return;
	}

}
0