結果

問題 No.762 PDCAパス
ユーザー lunnearlunnear
提出日時 2019-01-05 02:46:52
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 1,414 bytes
コンパイル時間 633 ms
コンパイル使用メモリ 72,944 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-05-03 02:50:14
合計ジャッジ時間 3,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 39 ms
5,376 KB
testcase_23 AC 38 ms
5,376 KB
testcase_24 AC 32 ms
7,936 KB
testcase_25 AC 34 ms
7,936 KB
testcase_26 AC 99 ms
6,656 KB
testcase_27 AC 98 ms
6,528 KB
testcase_28 AC 33 ms
6,912 KB
testcase_29 AC 33 ms
6,912 KB
testcase_30 AC 32 ms
6,400 KB
testcase_31 AC 30 ms
6,400 KB
testcase_32 AC 32 ms
6,400 KB
testcase_33 AC 28 ms
5,632 KB
testcase_34 AC 29 ms
5,632 KB
testcase_35 AC 30 ms
5,632 KB
testcase_36 AC 25 ms
5,376 KB
testcase_37 AC 25 ms
5,376 KB
testcase_38 AC 26 ms
5,376 KB
testcase_39 AC 28 ms
5,376 KB
testcase_40 AC 27 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:49:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   49 |         scanf("%d %d", &n1, &n2);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <iostream>
#include <list>
#include <map>

#define MOD 1000000007

unsigned long long count;
char *s;
std::list<int> *to;
std::map<char,int> pdca;

void Serch(int index)
{
    for(auto i = to[index].begin(); i != to[index].end(); i++)
    {
        if(s[index] == 'C')
        {
            count += to[index].size();
            break;
        }
        
        if(pdca[s[index]] < pdca[s[(*i)]])
        {
            Serch((*i));
        }
    }
}

int main()
{
    pdca['P'] = 0;
    pdca['D'] = 1;
    pdca['C'] = 2;
    pdca['A'] = 3;
    
    
    int n, m;
    std::cin >> n >> m;
    
    to = new std::list<int>[n];
    s = new char[n + 1];
    std::cin >> s;
    
    for(int i = 0; i < m; i++)
    {
        int n1, n2;
        //std::cin >> n1 >> n2;
        scanf("%d %d", &n1, &n2);
        n1--;
        n2--;
        
        int sub = pdca[s[n1]] - pdca[s[n2]];
        if(abs(sub) == 1)
        {
            if(sub < 0)
                to[n1].push_back(n2);
            else
                to[n2].push_back(n1);
        }
    }
    
    int ans = 0;
    for(int i = 0; i < n; i++)
    {
        if(s[i] != 'P' || to[i].empty())
            continue;
        
        count = 0;
        Serch(i);
        count %= MOD;
        ans += count;
        ans %= MOD;
    }
    
    std::cout << ans << std::endl;
    
    delete[] s;
    delete[] to;
    
    return 0;
}
0