結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,492 KB
testcase_01 AC 143 ms
41,160 KB
testcase_02 AC 133 ms
41,388 KB
testcase_03 AC 122 ms
40,212 KB
testcase_04 AC 138 ms
41,192 KB
testcase_05 AC 762 ms
54,256 KB
testcase_06 AC 604 ms
53,236 KB
testcase_07 AC 755 ms
55,460 KB
testcase_08 AC 657 ms
52,084 KB
testcase_09 AC 686 ms
52,692 KB
testcase_10 AC 539 ms
51,756 KB
testcase_11 AC 613 ms
52,492 KB
testcase_12 AC 830 ms
54,392 KB
testcase_13 AC 736 ms
53,948 KB
testcase_14 AC 367 ms
50,440 KB
testcase_15 AC 760 ms
54,300 KB
testcase_16 AC 800 ms
54,444 KB
testcase_17 AC 805 ms
56,396 KB
testcase_18 AC 851 ms
56,676 KB
testcase_19 AC 845 ms
58,576 KB
testcase_20 AC 449 ms
51,328 KB
testcase_21 AC 342 ms
49,156 KB
testcase_22 AC 597 ms
53,724 KB
testcase_23 AC 891 ms
59,592 KB
testcase_24 WA -
testcase_25 AC 740 ms
54,404 KB
testcase_26 AC 901 ms
61,256 KB
testcase_27 AC 793 ms
53,876 KB
testcase_28 AC 635 ms
52,564 KB
testcase_29 AC 626 ms
52,608 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