結果

問題 No.629 グラフの中に眠る門松列
ユーザー YamaKasaYamaKasa
提出日時 2018-09-30 14:50:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 282 ms / 4,000 ms
コード長 1,552 bytes
コンパイル時間 2,482 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 58,744 KB
最終ジャッジ日時 2024-10-12 09:06:55
合計ジャッジ時間 12,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,100 KB
testcase_01 AC 138 ms
53,976 KB
testcase_02 AC 148 ms
54,224 KB
testcase_03 AC 143 ms
54,300 KB
testcase_04 AC 142 ms
54,156 KB
testcase_05 AC 142 ms
54,164 KB
testcase_06 AC 136 ms
54,388 KB
testcase_07 AC 136 ms
54,072 KB
testcase_08 AC 135 ms
53,964 KB
testcase_09 AC 143 ms
54,108 KB
testcase_10 AC 142 ms
54,276 KB
testcase_11 AC 146 ms
54,332 KB
testcase_12 AC 151 ms
54,160 KB
testcase_13 AC 150 ms
54,132 KB
testcase_14 AC 146 ms
53,844 KB
testcase_15 AC 148 ms
54,400 KB
testcase_16 AC 150 ms
54,504 KB
testcase_17 AC 143 ms
54,176 KB
testcase_18 AC 144 ms
54,380 KB
testcase_19 AC 146 ms
54,372 KB
testcase_20 AC 138 ms
54,164 KB
testcase_21 AC 221 ms
56,768 KB
testcase_22 AC 224 ms
57,280 KB
testcase_23 AC 224 ms
56,748 KB
testcase_24 AC 253 ms
58,240 KB
testcase_25 AC 247 ms
57,756 KB
testcase_26 AC 260 ms
57,864 KB
testcase_27 AC 272 ms
58,744 KB
testcase_28 AC 206 ms
56,600 KB
testcase_29 AC 256 ms
57,832 KB
testcase_30 AC 265 ms
58,488 KB
testcase_31 AC 282 ms
58,620 KB
testcase_32 AC 264 ms
58,496 KB
testcase_33 AC 265 ms
58,500 KB
testcase_34 AC 263 ms
58,252 KB
testcase_35 AC 259 ms
58,468 KB
testcase_36 AC 268 ms
58,280 KB
testcase_37 AC 251 ms
57,720 KB
testcase_38 AC 264 ms
58,376 KB
testcase_39 AC 249 ms
57,960 KB
testcase_40 AC 226 ms
57,288 KB
testcase_41 AC 235 ms
58,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Scanner;
import java.util.Set;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int M = scan.nextInt();
		int[]a = new int[N];
		for(int i = 0; i < N; i++) {
			a[i] = scan.nextInt();
		}
		int[]u = new int[M];
		int[]v = new int[M];
		for(int i = 0; i < M; i++) {
			u[i] = scan.nextInt();
			v[i] = scan.nextInt();
		}
		scan.close();
		Map<Integer, ArrayList<Integer>> G
		= new HashMap<Integer, ArrayList<Integer>>();
		for(int i = 0; i < M; i++) {
			if(G.containsKey(u[i])) {
				G.get(u[i]).add(v[i]);
			}else {
				ArrayList<Integer> list = new ArrayList<Integer>();
				list.add(v[i]);
				G.put(u[i], list);
			}
			if(G.containsKey(v[i])) {
				G.get(v[i]).add(u[i]);
			}else {
				ArrayList<Integer> list = new ArrayList<Integer>();
				list.add(u[i]);
				G.put(v[i], list);
			}
		}
		for(int k : G.keySet()) {
			ArrayList<Integer> list = G.get(k);
			if(list.size() >= 2) {
				int t1 = a[k - 1];
				Set<Integer> up = new HashSet<Integer>();
				Set<Integer> dw = new HashSet<Integer>();
				for(int i = 0; i < list.size(); i++) {
					if(t1 > a[list.get(i) - 1]) {
						up.add(a[list.get(i) - 1]);
					}else if(t1 < a[list.get(i) - 1]) {
						dw.add(a[list.get(i) - 1]);
					}
				}
				if(up.size() >= 2 || dw.size() >= 2) {
					System.out.println("YES");
					System.exit(0);
				}
			}
		}
		System.out.println("NO");
	}
}
0