結果
問題 | No.629 グラフの中に眠る門松列 |
ユーザー | denderaKawazu |
提出日時 | 2018-02-15 10:23:16 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 410 ms / 4,000 ms |
コード長 | 3,407 bytes |
コンパイル時間 | 3,168 ms |
コンパイル使用メモリ | 78,560 KB |
実行使用メモリ | 48,920 KB |
最終ジャッジ日時 | 2024-12-25 22:21:48 |
合計ジャッジ時間 | 14,676 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
41,588 KB |
testcase_01 | AC | 145 ms
41,428 KB |
testcase_02 | AC | 140 ms
39,788 KB |
testcase_03 | AC | 134 ms
40,940 KB |
testcase_04 | AC | 142 ms
41,116 KB |
testcase_05 | AC | 135 ms
41,052 KB |
testcase_06 | AC | 127 ms
40,884 KB |
testcase_07 | AC | 113 ms
40,308 KB |
testcase_08 | AC | 135 ms
41,160 KB |
testcase_09 | AC | 163 ms
41,364 KB |
testcase_10 | AC | 131 ms
41,212 KB |
testcase_11 | AC | 132 ms
40,984 KB |
testcase_12 | AC | 119 ms
40,276 KB |
testcase_13 | AC | 137 ms
41,056 KB |
testcase_14 | AC | 131 ms
41,292 KB |
testcase_15 | AC | 129 ms
41,020 KB |
testcase_16 | AC | 135 ms
41,008 KB |
testcase_17 | AC | 121 ms
40,140 KB |
testcase_18 | AC | 140 ms
41,132 KB |
testcase_19 | AC | 142 ms
41,016 KB |
testcase_20 | AC | 142 ms
41,412 KB |
testcase_21 | AC | 395 ms
48,484 KB |
testcase_22 | AC | 225 ms
44,772 KB |
testcase_23 | AC | 387 ms
48,200 KB |
testcase_24 | AC | 245 ms
45,792 KB |
testcase_25 | AC | 410 ms
48,920 KB |
testcase_26 | AC | 399 ms
48,836 KB |
testcase_27 | AC | 264 ms
46,936 KB |
testcase_28 | AC | 214 ms
43,696 KB |
testcase_29 | AC | 244 ms
45,944 KB |
testcase_30 | AC | 266 ms
47,292 KB |
testcase_31 | AC | 268 ms
47,364 KB |
testcase_32 | AC | 264 ms
46,676 KB |
testcase_33 | AC | 291 ms
47,740 KB |
testcase_34 | AC | 246 ms
45,952 KB |
testcase_35 | AC | 240 ms
46,232 KB |
testcase_36 | AC | 267 ms
47,420 KB |
testcase_37 | AC | 268 ms
47,364 KB |
testcase_38 | AC | 272 ms
47,416 KB |
testcase_39 | AC | 247 ms
46,024 KB |
testcase_40 | AC | 235 ms
45,752 KB |
testcase_41 | AC | 241 ms
45,432 KB |
ソースコード
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Scanner; import java.util.ArrayList; /** * Built using CHelper plug-in * Actual solution is at the top */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; Scanner in = new Scanner(inputStream); PrintWriter out = new PrintWriter(outputStream); Task solver = new Task(); solver.solve(1, in, out); out.close(); } static class Task { static boolean search(ArrayList<Task.Vertex> path) { if (path.size() == 3) { int v0 = path.get(0).getValue(); int v1 = path.get(1).getValue(); int v2 = path.get(2).getValue(); return (v0 != v1 && v1 != v2 && v2 != v0) && ((v1 < v0 && v1 < v2) || (v1 > v0 && v1 > v2)); } Task.Vertex v = path.get(path.size() - 1); for (int i = 0; i < v.getDegree(); i++) { ArrayList<Task.Vertex> next = new ArrayList<>(); next.addAll(path); next.add(v.getEdge(i).getVertex()); if (search(next)) { return true; } } return false; } public void solve(int testNumber, Scanner in, PrintWriter out) { final int n = in.nextInt(); final int m = in.nextInt(); Task.Vertex[] v = new Task.Vertex[n]; for (int i = 0; i < n; i++) { v[i] = new Task.Vertex(in.nextInt()); } for (int i = 0; i < m; i++) { int index1 = in.nextInt() - 1; int index2 = in.nextInt() - 1; v[index1].setEdge(v[index2]); v[index2].setEdge(v[index1]); } boolean exist = false; for (int i = 0; i < n; i++) { ArrayList<Task.Vertex> path = new ArrayList<>(); path.add(v[i]); if (search(path)) { exist = true; break; } } out.printf("%s", exist ? "YES" : "NO"); } static class Vertex { private int value; private ArrayList<Task.Edge> edges = new ArrayList<Task.Edge>(); Vertex() { } Vertex(int v) { this.value = v; } void setEdge(Task.Vertex v) { this.edges.add(new Task.Edge(v)); } int getValue() { return this.value; } int getDegree() { return this.edges.size(); } Task.Edge getEdge(int index) { return this.edges.get(index); } } static class Edge { private Task.Vertex v; private int cost; Edge() { this.v = v; } Edge(Task.Vertex v) { this.v = v; } Edge(Task.Vertex v, int c) { this.v = v; this.cost = c; } Task.Vertex getVertex() { return this.v; } } } }