結果

問題 No.762 PDCAパス
ユーザー vis103vis103
提出日時 2018-12-14 15:52:07
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 3,123 bytes
コンパイル時間 2,021 ms
コンパイル使用メモリ 114,512 KB
実行使用メモリ 35,644 KB
最終ジャッジ日時 2024-09-25 05:11:04
合計ジャッジ時間 7,184 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
25,396 KB
testcase_01 AC 29 ms
25,504 KB
testcase_02 AC 30 ms
27,452 KB
testcase_03 AC 29 ms
27,416 KB
testcase_04 AC 29 ms
25,368 KB
testcase_05 AC 29 ms
25,260 KB
testcase_06 AC 29 ms
23,352 KB
testcase_07 AC 29 ms
25,496 KB
testcase_08 AC 29 ms
23,604 KB
testcase_09 AC 29 ms
25,404 KB
testcase_10 AC 29 ms
23,608 KB
testcase_11 AC 29 ms
25,400 KB
testcase_12 AC 30 ms
27,580 KB
testcase_13 AC 29 ms
25,528 KB
testcase_14 AC 29 ms
27,168 KB
testcase_15 AC 29 ms
25,392 KB
testcase_16 AC 29 ms
25,260 KB
testcase_17 AC 30 ms
27,280 KB
testcase_18 AC 29 ms
25,240 KB
testcase_19 AC 30 ms
25,280 KB
testcase_20 AC 29 ms
25,628 KB
testcase_21 AC 29 ms
25,396 KB
testcase_22 AC 166 ms
32,884 KB
testcase_23 AC 168 ms
32,856 KB
testcase_24 AC 166 ms
35,352 KB
testcase_25 AC 168 ms
31,276 KB
testcase_26 AC 192 ms
33,608 KB
testcase_27 AC 192 ms
35,644 KB
testcase_28 AC 180 ms
34,048 KB
testcase_29 AC 179 ms
31,608 KB
testcase_30 AC 179 ms
33,460 KB
testcase_31 AC 180 ms
31,668 KB
testcase_32 AC 179 ms
33,472 KB
testcase_33 AC 177 ms
33,264 KB
testcase_34 AC 181 ms
31,100 KB
testcase_35 AC 179 ms
35,308 KB
testcase_36 AC 176 ms
32,860 KB
testcase_37 AC 175 ms
33,108 KB
testcase_38 AC 176 ms
32,984 KB
testcase_39 AC 176 ms
30,808 KB
testcase_40 AC 176 ms
32,984 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;

class Program
{
    static int[] pathCount;

    static void Main()
    {
        Console.SetIn(new System.IO.StreamReader(Console.OpenStandardInput((int)Math.Pow(10,5))));
        string[] arr = Console.ReadLine().Split(' ');
        int N = int.Parse(arr[0]);
        int M = int.Parse(arr[1]);
        string s = Console.ReadLine();
        List<Path> paths = new List<Path>();
        List<int> DCindex = new List<int>();

        pathCount = Enumerable.Repeat(0, N).ToArray();

        for (int i = 0; i < M; i++)
        {
            arr = Console.ReadLine().Split(' ');
            Path p = new Path();

            p.From = int.Parse(arr[0]) - 1;
            p.To = int.Parse(arr[1]) - 1;

            if(s.Substring(p.From, 1) == "P" && s.Substring(p.To, 1) == "D" ||
               s.Substring(p.From, 1) == "D" && s.Substring(p.To, 1) == "C" ||
               s.Substring(p.From, 1) == "C" && s.Substring(p.To, 1) == "A")
            {
                p.From = int.Parse(arr[0]) - 1;
                p.To = int.Parse(arr[1]) - 1;
                paths.Add(p);

                if (s.Substring(p.From, 1) == "P" && s.Substring(p.To, 1) == "D")
                {
                    pathCount[p.To]++;
                }
                else if (s.Substring(p.From, 1) == "D" && s.Substring(p.To, 1) == "C")
                {
                    DCindex.Add(paths.Count - 1);
                }
                else if (s.Substring(p.From, 1) == "C" && s.Substring(p.To, 1) == "A")
                {
                    pathCount[p.From]++;
                }

            }
            else if(s.Substring(p.To, 1) == "P" && s.Substring(p.From, 1) == "D" ||
                    s.Substring(p.To, 1) == "D" && s.Substring(p.From, 1) == "C" ||
                    s.Substring(p.To, 1) == "C" && s.Substring(p.From, 1) == "A")
            {
                p.To = int.Parse(arr[0]) - 1;
                p.From = int.Parse(arr[1]) - 1;
                paths.Add(p);
                if (s.Substring(p.From, 1) == "P" && s.Substring(p.To, 1) == "D")
                {
                    pathCount[p.To]++;
                }
                else if (s.Substring(p.From, 1) == "D" && s.Substring(p.To, 1) == "C")
                {
                    DCindex.Add(paths.Count - 1);
                }
                else if (s.Substring(p.From, 1) == "C" && s.Substring(p.To, 1) == "A")
                {
                    pathCount[p.From]++;
                }
            }
        }

        if(DCindex.Count == 0)
        {
            Console.WriteLine("0");
            return;
        }

        int mod = 1000000007;
        ulong sum = 0;

        for (int i = 0; i < DCindex.Count; i++)
        {
            Path pDC = paths[DCindex[i]];
            
            sum += (ulong)(pathCount[pDC.To] * pathCount[pDC.From]);
            sum %= (ulong)mod;
        }
        
        Console.WriteLine(sum);
    }
}

class Path
{
    public int From { get; set; }
    public int To { get; set; }
}

0