結果
問題 | No.408 五輪ピック |
ユーザー | Kilisame |
提出日時 | 2016-09-08 12:44:10 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,972 bytes |
コンパイル時間 | 2,210 ms |
コンパイル使用メモリ | 77,776 KB |
実行使用メモリ | 98,368 KB |
最終ジャッジ日時 | 2024-11-15 22:17:32 |
合計ジャッジ時間 | 37,961 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | AC | 131 ms
46,940 KB |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | AC | 131 ms
46,868 KB |
testcase_05 | AC | 496 ms
51,184 KB |
testcase_06 | AC | 392 ms
49,312 KB |
testcase_07 | AC | 462 ms
50,004 KB |
testcase_08 | AC | 440 ms
49,232 KB |
testcase_09 | AC | 445 ms
48,728 KB |
testcase_10 | AC | 388 ms
49,064 KB |
testcase_11 | AC | 383 ms
48,508 KB |
testcase_12 | AC | 503 ms
51,396 KB |
testcase_13 | AC | 499 ms
52,352 KB |
testcase_14 | AC | 283 ms
47,052 KB |
testcase_15 | AC | 507 ms
52,092 KB |
testcase_16 | AC | 507 ms
51,588 KB |
testcase_17 | AC | 517 ms
53,844 KB |
testcase_18 | AC | 527 ms
50,164 KB |
testcase_19 | AC | 539 ms
51,560 KB |
testcase_20 | AC | 302 ms
47,984 KB |
testcase_21 | AC | 253 ms
46,412 KB |
testcase_22 | AC | 374 ms
49,288 KB |
testcase_23 | AC | 542 ms
51,540 KB |
testcase_24 | TLE | - |
testcase_25 | AC | 542 ms
50,812 KB |
testcase_26 | AC | 540 ms
52,936 KB |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | AC | 128 ms
41,716 KB |
testcase_31 | MLE | - |
ソースコード
import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner cin = new Scanner(System.in); String line = cin.nextLine(); String[] splitedLine = line.split(" "); int n = Integer.parseInt(splitedLine[0]); if (n < 5) { /* 最低5頂点なければ長さ5の単純閉路は作れない */ exit(false); } int m = Integer.parseInt(splitedLine[1]); if (m < 5) { /* 最低5辺なければ長さ5の単純閉路は作れない */ exit(false); } List<Integer>[] sideListArray = new List[n]; for (int i = 0; i < m; i++) { line = cin.nextLine(); splitedLine = line.split(" "); int a = Integer.parseInt(splitedLine[0]) - 1; int b = Integer.parseInt(splitedLine[1]) - 1; if (sideListArray[a] == null) { sideListArray[a] = new ArrayList<Integer>(); } sideListArray[a].add(b); if (sideListArray[b] == null) { sideListArray[b] = new ArrayList<Integer>(); } sideListArray[b].add(a); } cin.close(); if (sideListArray[0].size() < 2) { /* 頂点1から異なる2頂点への辺が存在しない場合、頂点1を含む単純閉路は作れない */ exit(false); } for (int i = 0; i < sideListArray[0].size(); i++) { for (int j = i + 1; j < sideListArray[0].size(); j++) { /* 頂点1からたどれる2点a,bを取り出す */ int a = sideListArray[0].get(i); int b = sideListArray[0].get(j); for (int c : sideListArray[a]) { /* aからたどれる頂点のうち、1でもbでもない点cを取り出す */ if (c == 0 || c == b) { continue; } for (int d : sideListArray[b]) { /* bからたどれる頂点のうち、1でもaでもcでもない点dを取り出す */ if (d == 0 || d == a || d == c) { continue; } if (sideListArray[c].contains(d)) { /* cからdへとつながる辺があれば、1-a-c-d-b-1という長さ5の単純閉路が存在していることになる */ exit(true); } } } } } /* 全探索を終えてもみつからなければ、無し。 */ exit(false); } private static void exit(boolean result) { if (result) { System.out.println("YES"); } else { System.out.println("NO"); } System.exit(0); } }