結果

問題 No.408 五輪ピック
ユーザー 14番14番
提出日時 2016-09-01 18:54:16
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 2,965 bytes
コンパイル時間 929 ms
コンパイル使用メモリ 113,920 KB
実行使用メモリ 53,760 KB
最終ジャッジ日時 2024-11-15 17:01:20
合計ジャッジ時間 28,593 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 41 ms
36,040 KB
testcase_02 AC 42 ms
52,480 KB
testcase_03 AC 42 ms
20,864 KB
testcase_04 AC 43 ms
21,120 KB
testcase_05 AC 104 ms
30,848 KB
testcase_06 AC 81 ms
30,720 KB
testcase_07 AC 105 ms
32,128 KB
testcase_08 AC 90 ms
28,544 KB
testcase_09 AC 87 ms
29,568 KB
testcase_10 AC 86 ms
30,464 KB
testcase_11 AC 91 ms
30,464 KB
testcase_12 AC 119 ms
33,536 KB
testcase_13 AC 99 ms
29,056 KB
testcase_14 AC 59 ms
26,496 KB
testcase_15 AC 99 ms
29,440 KB
testcase_16 AC 108 ms
31,104 KB
testcase_17 AC 127 ms
32,512 KB
testcase_18 AC 113 ms
32,640 KB
testcase_19 AC 124 ms
33,920 KB
testcase_20 AC 60 ms
27,520 KB
testcase_21 AC 49 ms
23,748 KB
testcase_22 AC 73 ms
30,336 KB
testcase_23 AC 119 ms
33,920 KB
testcase_24 AC 261 ms
42,112 KB
testcase_25 TLE -
testcase_26 AC 153 ms
37,248 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 40 ms
21,376 KB
testcase_31 AC 40 ms
52,608 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.Text;
using System.Linq;


class Program
{
    public void Proc()
    {
        Reader.IsDebug = false;
        int[] inpt = Reader.ReadLine().Split(' ').Select(a => int.Parse(a)).ToArray();

        int pointCount = inpt[0];
        int connectCount = inpt[1];

        for (int i = 0; i < connectCount; i++)
        {
            inpt = Reader.ReadLine().Split(' ').Select(a => int.Parse(a)).ToArray();
            if (!con.ContainsKey(inpt[0]))
            {
                con.Add(inpt[0], new Dictionary<int, bool>());
            }
            con[inpt[0]][inpt[1]] = true;
            if (!con.ContainsKey(inpt[1]))
            {
                con.Add(inpt[1], new Dictionary<int, bool>());
            }
            con[inpt[1]][inpt[0]] = true;
        }
        bool ans = GetAns(1, 5, new SortedDictionary<int,bool>());
        Console.WriteLine(ans ? "YES" : "NO");
    }

    private bool GetAns(int pos, int remain, SortedDictionary<int, bool> flag)
    {
        string key = string.Join("#", flag.Keys);
        if (!dic.ContainsKey(pos))
        {
            dic.Add(pos, new Dictionary<string, bool>());
        }
        if (dic[pos].ContainsKey(key))
        {
            return dic[pos][key];
        }

        if (remain == 0)
        {
            return pos == 1;
        }

        if (remain != 5 && pos == 1)
        {
            return false;
        }

        bool ans = false;

        if (con.ContainsKey(pos))
        {
            foreach (int next in con[pos].Keys)
            {
                if (flag.ContainsKey(next))
                {
                    continue;
                }
                flag.Add(next, true);
                bool ret = this.GetAns(next, remain - 1, flag);
                flag.Remove(next);
                if (ret)
                {
                    ans = true;
                    break;
                }
            }
        }
        this.dic[pos].Add(key, ans);
        return ans;
    }

    private Dictionary<int, Dictionary<int, bool>> con = new Dictionary<int, Dictionary<int, bool>>();

    private Dictionary<int, Dictionary<string, bool>> dic = new Dictionary<int, Dictionary<string, bool>>();


    public class Reader
    {
        public static bool IsDebug = true;
        private static String PlainInput = @"





7 10
1 2
1 3
1 4
1 5
2 3
2 4
2 6
3 4
3 7
4 5





";
        private static System.IO.StringReader Sr = null;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (Sr == null)
                {
                    Sr = new System.IO.StringReader(PlainInput.Trim());
                }
                return Sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }
    }
    static void Main()
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0