結果

問題 No.629 グラフの中に眠る門松列
ユーザー mbanmban
提出日時 2018-01-09 19:35:08
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 42 ms / 4,000 ms
コード長 2,506 bytes
コンパイル時間 907 ms
コンパイル使用メモリ 114,252 KB
実行使用メモリ 28,652 KB
最終ジャッジ日時 2024-06-06 03:22:12
合計ジャッジ時間 3,581 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
26,408 KB
testcase_01 AC 33 ms
26,028 KB
testcase_02 AC 32 ms
24,368 KB
testcase_03 AC 32 ms
26,164 KB
testcase_04 AC 33 ms
26,032 KB
testcase_05 AC 33 ms
26,284 KB
testcase_06 AC 32 ms
25,772 KB
testcase_07 AC 33 ms
26,156 KB
testcase_08 AC 32 ms
26,544 KB
testcase_09 AC 32 ms
26,408 KB
testcase_10 AC 32 ms
28,192 KB
testcase_11 AC 32 ms
26,156 KB
testcase_12 AC 32 ms
26,408 KB
testcase_13 AC 32 ms
26,280 KB
testcase_14 AC 32 ms
26,392 KB
testcase_15 AC 32 ms
26,148 KB
testcase_16 AC 32 ms
26,408 KB
testcase_17 AC 31 ms
28,312 KB
testcase_18 AC 32 ms
26,032 KB
testcase_19 AC 32 ms
26,260 KB
testcase_20 AC 33 ms
28,436 KB
testcase_21 AC 38 ms
26,600 KB
testcase_22 AC 38 ms
28,576 KB
testcase_23 AC 37 ms
26,540 KB
testcase_24 AC 35 ms
28,304 KB
testcase_25 AC 35 ms
28,564 KB
testcase_26 AC 40 ms
26,540 KB
testcase_27 AC 41 ms
28,520 KB
testcase_28 AC 38 ms
28,272 KB
testcase_29 AC 39 ms
26,608 KB
testcase_30 AC 40 ms
24,628 KB
testcase_31 AC 40 ms
26,480 KB
testcase_32 AC 40 ms
26,792 KB
testcase_33 AC 40 ms
26,408 KB
testcase_34 AC 40 ms
28,652 KB
testcase_35 AC 40 ms
24,504 KB
testcase_36 AC 40 ms
26,532 KB
testcase_37 AC 40 ms
26,536 KB
testcase_38 AC 42 ms
26,536 KB
testcase_39 AC 39 ms
26,492 KB
testcase_40 AC 39 ms
28,648 KB
testcase_41 AC 38 ms
26,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Contest
{
    class Scanner
    {
        private string[] line = new string[0];
        private int index = 0;
        public string Next()
        {
            if (line.Length <= index)
            {
                line = Console.ReadLine().Split(' ');
                index = 0;
            }
            var res = line[index];
            index++;
            return res;
        }
        public int NextInt()
        {
            return int.Parse(Next());
        }
        public long NextLong()
        {
            return long.Parse(Next());
        }
        public string[] Array()
        {
            line = Console.ReadLine().Split(' ');
            index = line.Length;
            return line;
        }
        public int[] IntArray()
        {
            return Array().Select(int.Parse).ToArray();
        }
        public long[] LongArray()
        {
            return Array().Select(long.Parse).ToArray();
        }
    }

    class Program
    {
        private int N, M;
        private int[] A;
        private List<int>[] R;
        public void Solve()
        {
            var sc = new Scanner();
            N = sc.NextInt();
            M = sc.NextInt();
            A = sc.IntArray();
            R = new List<int>[N];
            for (int i = 0; i < N; i++)
            {
                R[i] = new List<int>();
            }
            for (int i = 0; i < M; i++)
            {
                var u = sc.NextInt() - 1;
                var v = sc.NextInt() - 1;
                R[u].Add(v);
                R[v].Add(u);
            }

            for (int i = 0; i < N; i++)
            {
                var less = new HashSet<int>();
                var great = new HashSet<int>();
                foreach (int j in R[i])
                {
                    if (A[j] < A[i])
                    {
                        less.Add(A[j]);
                    }
                    if (A[j] > A[i])
                    {
                        great.Add(A[j]);
                    }
                }
                if ((less.Count >= 2) || (great.Count >= 2))
                {
                    Console.WriteLine("YES");
                    return;
                }
            }
            Console.WriteLine("NO");
        }

        static void Main(string[] args)
        {
            new Program().Solve();
        }
    }
}
0