結果

問題 No.629 グラフの中に眠る門松列
ユーザー htensaihtensai
提出日時 2019-11-14 11:29:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 264 ms / 4,000 ms
コード長 983 bytes
コンパイル時間 2,346 ms
コンパイル使用メモリ 78,108 KB
実行使用メモリ 46,972 KB
最終ジャッジ日時 2024-09-21 21:22:21
合計ジャッジ時間 11,855 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,108 KB
testcase_01 AC 131 ms
41,244 KB
testcase_02 AC 133 ms
41,484 KB
testcase_03 AC 135 ms
41,504 KB
testcase_04 AC 135 ms
41,360 KB
testcase_05 AC 136 ms
41,328 KB
testcase_06 AC 134 ms
41,184 KB
testcase_07 AC 119 ms
40,516 KB
testcase_08 AC 134 ms
41,392 KB
testcase_09 AC 133 ms
41,088 KB
testcase_10 AC 132 ms
41,336 KB
testcase_11 AC 135 ms
41,328 KB
testcase_12 AC 135 ms
41,444 KB
testcase_13 AC 134 ms
41,336 KB
testcase_14 AC 136 ms
41,428 KB
testcase_15 AC 134 ms
41,028 KB
testcase_16 AC 135 ms
41,024 KB
testcase_17 AC 119 ms
39,896 KB
testcase_18 AC 134 ms
41,512 KB
testcase_19 AC 135 ms
41,260 KB
testcase_20 AC 136 ms
41,520 KB
testcase_21 AC 218 ms
44,276 KB
testcase_22 AC 209 ms
44,192 KB
testcase_23 AC 215 ms
45,120 KB
testcase_24 AC 239 ms
45,632 KB
testcase_25 AC 240 ms
45,632 KB
testcase_26 AC 245 ms
46,232 KB
testcase_27 AC 260 ms
46,444 KB
testcase_28 AC 198 ms
43,364 KB
testcase_29 AC 240 ms
45,796 KB
testcase_30 AC 259 ms
46,676 KB
testcase_31 AC 264 ms
46,972 KB
testcase_32 AC 255 ms
46,408 KB
testcase_33 AC 260 ms
46,184 KB
testcase_34 AC 246 ms
46,284 KB
testcase_35 AC 243 ms
45,788 KB
testcase_36 AC 256 ms
46,464 KB
testcase_37 AC 246 ms
45,880 KB
testcase_38 AC 257 ms
46,432 KB
testcase_39 AC 248 ms
45,624 KB
testcase_40 AC 223 ms
46,344 KB
testcase_41 AC 233 ms
45,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int[] arr = new int[n + 1];
		TreeSet<Integer>[] graph = new TreeSet[n + 1];
		for (int i = 1; i <= n; i++) {
		    arr[i] = sc.nextInt();
		    graph[i] = new TreeSet<Integer>();
		}
		for (int i = 0; i < m; i++) {
		    int a = sc.nextInt();
		    int b = sc.nextInt();
		    graph[a].add(arr[b]);
		    graph[b].add(arr[a]);
		}
		for (int i = 1; i <= n; i++) {
		    Integer small = graph[i].lower(arr[i]);
		    if (small != null) {
		        if (graph[i].lower(small) != null) {
		            System.out.println("YES");
		            return;
		        }
		    }
		    Integer large = graph[i].higher(arr[i]);
		    if (large != null) {
		        if (graph[i].higher(large) != null) {
		            System.out.println("YES");
		            return;
		        }
		    }
		}
		System.out.println("NO");
	}
}
0