結果

問題 No.762 PDCAパス
ユーザー iicafiaxusiicafiaxus
提出日時 2018-12-10 12:46:48
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 1,534 bytes
コンパイル時間 1,098 ms
コンパイル使用メモリ 127,096 KB
実行使用メモリ 23,868 KB
最終ジャッジ日時 2024-06-13 02:10:10
合計ジャッジ時間 4,923 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 106 ms
11,864 KB
testcase_23 AC 101 ms
12,292 KB
testcase_24 AC 112 ms
21,364 KB
testcase_25 AC 115 ms
23,116 KB
testcase_26 AC 92 ms
13,804 KB
testcase_27 AC 90 ms
12,620 KB
testcase_28 AC 177 ms
23,500 KB
testcase_29 AC 171 ms
22,136 KB
testcase_30 AC 169 ms
22,140 KB
testcase_31 AC 172 ms
22,060 KB
testcase_32 AC 174 ms
23,868 KB
testcase_33 AC 162 ms
22,088 KB
testcase_34 AC 158 ms
22,112 KB
testcase_35 AC 157 ms
22,088 KB
testcase_36 AC 129 ms
15,748 KB
testcase_37 AC 128 ms
15,536 KB
testcase_38 AC 124 ms
19,812 KB
testcase_39 AC 126 ms
19,612 KB
testcase_40 AC 125 ms
19,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.conv, std.string, std.bigint;
import std.math, std.random, std.datetime;
import std.array, std.range, std.algorithm, std.container, std.format;
string read(){ static string[] ss; while(!ss.length) ss = readln.chomp.split; string res = ss[0]; ss.popFront; return res; }

const long MOD = 1000000007;

class Node{
 int id;
 char value;
 bool hasMemo;
 long memo;
 Node[] nodes;
 this(int id){
  this.id = id;
 }
 override string toString(){
  return this.id.to!string ~ " " ~ this.value;
 }
}


void main(){
 int n = read.to!int;
 Node[] nodes;
 foreach(i; 0 .. n) nodes ~= new Node(i);

 int m = read.to!int;
	
 string s = readln.chomp;
 foreach(i, c; s) nodes[i].value = c;
	
 foreach(i; 0 .. m){
  int u = read.to!int - 1, v = read.to!int - 1;
  nodes[u].nodes ~= nodes[v];
  nodes[v].nodes ~= nodes[u];
 }
	
 long ans = 0;
 foreach(nd1; nodes){
  if(nd1.value != 'P') continue;
  if(! nd1.hasMemo){
   nd1.memo = 0;
   foreach(nd2; nd1.nodes){
    if(nd2.value != 'D') continue;
    if(! nd2.hasMemo){
     nd2.memo = 0;
     foreach(nd3; nd2.nodes){
      if(nd3.value != 'C') continue;
      if(! nd3.hasMemo){
       nd3.memo = 0;
       foreach(nd4; nd3.nodes){
        if(nd4.value != 'A') continue;
        nd3.memo += 1;
        nd3.memo  %= MOD;
       }
       nd3.hasMemo = 1;
      }
      nd2.memo += nd3.memo;
      nd2.memo %= MOD;
     }
     nd2.hasMemo = 1;
    }
    nd1.memo += nd2.memo;
    nd1.memo %= MOD;
   }
   nd1.hasMemo = 1;
  }
  ans += nd1.memo;
  ans %= MOD;
 }
	
 ans.writeln;
}
0