結果
問題 | No.408 五輪ピック |
ユーザー | uafr_cs |
提出日時 | 2016-08-05 23:21:32 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,812 bytes |
コンパイル時間 | 4,018 ms |
コンパイル使用メモリ | 79,140 KB |
実行使用メモリ | 70,416 KB |
最終ジャッジ日時 | 2024-11-07 01:49:47 |
合計ジャッジ時間 | 13,234 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
50,044 KB |
testcase_01 | AC | 57 ms
49,860 KB |
testcase_02 | AC | 58 ms
49,952 KB |
testcase_03 | AC | 56 ms
50,032 KB |
testcase_04 | AC | 57 ms
49,792 KB |
testcase_05 | AC | 334 ms
61,396 KB |
testcase_06 | AC | 344 ms
63,724 KB |
testcase_07 | WA | - |
testcase_08 | AC | 302 ms
61,372 KB |
testcase_09 | AC | 297 ms
61,552 KB |
testcase_10 | AC | 321 ms
61,560 KB |
testcase_11 | AC | 318 ms
61,708 KB |
testcase_12 | AC | 418 ms
65,664 KB |
testcase_13 | AC | 327 ms
60,932 KB |
testcase_14 | AC | 223 ms
56,936 KB |
testcase_15 | AC | 328 ms
61,628 KB |
testcase_16 | AC | 348 ms
61,916 KB |
testcase_17 | AC | 363 ms
61,964 KB |
testcase_18 | AC | 361 ms
62,004 KB |
testcase_19 | AC | 371 ms
62,216 KB |
testcase_20 | AC | 256 ms
61,080 KB |
testcase_21 | AC | 205 ms
55,632 KB |
testcase_22 | AC | 328 ms
63,244 KB |
testcase_23 | AC | 450 ms
68,264 KB |
testcase_24 | AC | 405 ms
70,416 KB |
testcase_25 | AC | 585 ms
66,224 KB |
testcase_26 | AC | 548 ms
69,392 KB |
testcase_27 | AC | 805 ms
66,436 KB |
testcase_28 | AC | 257 ms
61,076 KB |
testcase_29 | AC | 258 ms
61,500 KB |
testcase_30 | AC | 57 ms
50,196 KB |
testcase_31 | AC | 56 ms
50,264 KB |
ソースコード
import java.io.BufferedReader; import java.io.Closeable; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.Arrays; import java.util.HashSet; import java.util.LinkedList; import java.util.Scanner; import java.util.Set; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException { 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++){ final HashSet<Integer> fst_to_1 = new HashSet<Integer>(to_1.get(fst)); for(final int snd : adj.get(fst)){ final HashSet<Integer> snd_to_1 = new HashSet<Integer>(to_1.get(snd)); snd_to_1.remove(fst); boolean contain = false; if(fst_to_1.contains(snd)){ contain = true; fst_to_1.remove(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; }else if(fst_to_1.size() > 1){ System.out.println("YES"); return; } if(contain){ fst_to_1.add(snd); } } } System.out.println("NO"); return; } public static class Scanner implements Closeable { private BufferedReader br; private StringTokenizer tok; public Scanner(InputStream is) throws IOException { br = new BufferedReader(new InputStreamReader(is)); } private void getLine() throws IOException { while (!hasNext()) { tok = new StringTokenizer(br.readLine()); } } private boolean hasNext() { return tok != null && tok.hasMoreTokens(); } public String next() throws IOException { getLine(); return tok.nextToken(); } public int nextInt() throws IOException { return Integer.parseInt(next()); } public long nextLong() throws IOException { return Long.parseLong(next()); } public double nextDouble() throws IOException { return Double.parseDouble(next()); } public void close() throws IOException { br.close(); } } }