結果

問題 No.629 グラフの中に眠る門松列
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-01-05 21:28:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 4,000 ms
コード長 2,452 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 84,760 KB
実行使用メモリ 42,252 KB
最終ジャッジ日時 2024-06-02 09:56:12
合計ジャッジ時間 6,815 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,448 KB
testcase_01 AC 55 ms
37,456 KB
testcase_02 AC 53 ms
36,876 KB
testcase_03 AC 52 ms
37,412 KB
testcase_04 AC 53 ms
37,412 KB
testcase_05 AC 52 ms
37,468 KB
testcase_06 AC 53 ms
37,120 KB
testcase_07 AC 53 ms
37,308 KB
testcase_08 AC 53 ms
37,324 KB
testcase_09 AC 56 ms
37,444 KB
testcase_10 AC 55 ms
36,992 KB
testcase_11 AC 53 ms
37,480 KB
testcase_12 AC 55 ms
37,108 KB
testcase_13 AC 53 ms
37,476 KB
testcase_14 AC 52 ms
37,600 KB
testcase_15 AC 55 ms
37,428 KB
testcase_16 AC 55 ms
37,288 KB
testcase_17 AC 53 ms
37,584 KB
testcase_18 AC 54 ms
37,364 KB
testcase_19 AC 52 ms
36,996 KB
testcase_20 AC 54 ms
37,128 KB
testcase_21 AC 104 ms
39,736 KB
testcase_22 AC 82 ms
38,688 KB
testcase_23 AC 106 ms
39,820 KB
testcase_24 AC 103 ms
39,928 KB
testcase_25 AC 136 ms
42,252 KB
testcase_26 AC 133 ms
42,204 KB
testcase_27 AC 120 ms
40,164 KB
testcase_28 AC 81 ms
38,456 KB
testcase_29 AC 113 ms
40,064 KB
testcase_30 AC 122 ms
40,104 KB
testcase_31 AC 124 ms
40,544 KB
testcase_32 AC 119 ms
40,380 KB
testcase_33 AC 122 ms
41,396 KB
testcase_34 AC 116 ms
40,160 KB
testcase_35 AC 118 ms
39,692 KB
testcase_36 AC 115 ms
40,156 KB
testcase_37 AC 120 ms
39,952 KB
testcase_38 AC 118 ms
40,352 KB
testcase_39 AC 114 ms
40,288 KB
testcase_40 AC 100 ms
39,396 KB
testcase_41 AC 88 ms
39,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


class Main {
    static ArrayList<Integer>[]g;
    public static void main(String[] args) {
        MyScanner sc = new MyScanner();
        out = new PrintWriter(new BufferedOutputStream(System.out));
        int n=sc.nextInt();
        int m=sc.nextInt();
        int[]a=sc.nextIntArray(n);
        g=new ArrayList[n];
        Arrays.setAll(g,x->new ArrayList<Integer>());
        for(int i=0;i<m;++i){
            int u=sc.nextInt()-1;
            int v=sc.nextInt()-1;
            g[u].add(v);
            g[v].add(u);
        }
        for(int i=0;i<n;++i){
            int s=g[i].size();
            for(int j=0;j<s;++j){
                int u=g[i].get(j);
                for(int k=0;k<j;++k){
                    int v=g[i].get(k);
                    if(a[u]!=a[v]&&(a[u]-a[i])*(a[v]-a[i])>0){
                        out.println("YES");
                        out.close();
                        return;
                    }
                }
            }
        }
        out.println("NO");
        out.close();
    }
    // http://codeforces.com/blog/entry/7018
    //-----------PrintWriter for faster output---------------------------------
    public static PrintWriter out;
    //-----------MyScanner class for faster input----------
    public static class MyScanner {
        BufferedReader br;
        StringTokenizer st;
        public MyScanner() {
            br = new BufferedReader(new InputStreamReader(System.in));
        }
        String next() {
            while (st == null || !st.hasMoreElements()) {
                try {
                    st = new StringTokenizer(br.readLine());
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            return st.nextToken();
        }
        int nextInt() {
            return Integer.parseInt(next());
        }
        long nextLong() {
            return Long.parseLong(next());
        }
        double nextDouble() {
            return Double.parseDouble(next());
        }
        String nextLine(){
            String str = "";
            try {
                str = br.readLine();
            } catch (IOException e) {
                e.printStackTrace();
            }
            return str;
        }
        int[] nextIntArray(int n){
            int[]r=new int[n];
            for(int i=0;i<n;++i)r[i]=nextInt();
            return r;
        }
    }
}
0