結果
問題 | No.762 PDCAパス |
ユーザー | lunnear |
提出日時 | 2018-12-11 14:30:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,460 bytes |
コンパイル時間 | 477 ms |
コンパイル使用メモリ | 59,616 KB |
実行使用メモリ | 7,168 KB |
最終ジャッジ日時 | 2024-09-21 20:45:03 |
合計ジャッジ時間 | 4,674 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
ソースコード
#include <iostream> #include <list> #define MOD 1000000007 struct Node { char data; std::list<Node*> to; }; Node *nodes; int count; void Serch(Node *n) { for(auto i = n->to.begin(); i != n->to.end(); i++) { if((n->data == 2) && ((*i)->data == 3)) { count++; count %= MOD; continue; } if((n->data + 1) == (*i)->data) { Serch((*i)); } } } int main() { int n, m; std::cin >> n >> m; nodes = new Node[n]; std::list<int> p; for(int i = 0; i < n; i++) { switch(std::cin.get()){ case 'P': nodes[i].data = 0; p.push_back(i); break; case 'D': nodes[i].data = 1; break; case 'C': nodes[i].data = 2; break; case 'A': nodes[i].data = 3; break; } } for(int i = 0; i < m; i++) { int n1, n2; std::cin >> n1 >> n2; n1--; n2--; int sub = nodes[n1].data - nodes[n2].data; if(abs(sub) == 1) { if(sub < 0) nodes[n1].to.push_back(&nodes[n2]); else nodes[n2].to.push_back(&nodes[n1]); } } int ans = 0; for(auto i = p.begin(); i != p.end(); i++) { count = 0; Serch(&nodes[(*i)]); ans += count; ans %= MOD; } std::cout << ans << std::endl; return 0; }