結果

問題 No.1340 おーじ君をさがせ
ユーザー maspymaspy
提出日時 2020-09-26 17:38:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,035 bytes
コンパイル時間 611 ms
コンパイル使用メモリ 70,272 KB
実行使用メモリ 101,120 KB
最終ジャッジ日時 2024-05-05 02:31:21
合計ジャッジ時間 3,587 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
19,840 KB
testcase_01 WA -
testcase_02 AC 79 ms
101,120 KB
testcase_03 AC 32 ms
35,968 KB
testcase_04 AC 22 ms
22,912 KB
testcase_05 AC 44 ms
52,224 KB
testcase_06 AC 27 ms
27,904 KB
testcase_07 AC 9 ms
10,880 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 5 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 5 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 4 ms
5,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 6 ms
5,888 KB
testcase_21 AC 6 ms
5,376 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 7 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 6 ms
5,376 KB
testcase_26 AC 6 ms
5,376 KB
testcase_27 AC 5 ms
5,376 KB
testcase_28 AC 6 ms
5,376 KB
testcase_29 AC 5 ms
5,376 KB
testcase_30 AC 6 ms
5,376 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 RE -
testcase_37 AC 7 ms
5,376 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 13 ms
14,208 KB
testcase_43 AC 13 ms
13,312 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 5 ms
5,376 KB
testcase_50 AC 6 ms
5,376 KB
testcase_51 AC 5 ms
5,376 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 5 ms
5,376 KB
testcase_55 AC 4 ms
5,376 KB
testcase_56 AC 21 ms
23,040 KB
testcase_57 AC 21 ms
23,040 KB
testcase_58 AC 29 ms
35,968 KB
testcase_59 AC 4 ms
5,376 KB
testcase_60 AC 84 ms
101,120 KB
testcase_61 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 探索回数を減らして落ちるかどうか確認

#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
using ll = long long;


bool dp[1000000][100];
int frm[10000];
int to[10000];

ll N, M, T, ans;

int main(){
    cin >> N >> M >> T;
    for(int i=0;i<M;i++){
        int from[i], b;
        cin >> frm[i] >> to[i];
    }
    dp[0][0] = true;
    int T_max = 1000000/M;
    for(int t=1;t<=T_max;t++){
        for(int e=0;e<M;e++){
            dp[t][to[e]] |= dp[t-1][frm[e]];
        }
    }
    for(int v=0;v<N;v++){
        // last two
        ll t1 = -1;
        ll t2 = -1;
        for (int t=0;t<T_max;t++){
            if(dp[t][v]){
                t1 = t2;
                t2 = t;
            }
        }
        if(T < T_max){
            ans += (dp[T][v] ? 1 : 0);
        } else{
            if(t1 > N){
                ll p = t2 - t1;
                ans += ((T-t2)%p==0 ? 1 : 0);
            }
        }
    }
    if(ans==0){
        ans-=1;
    }
    cout << ans << endl;
    return 0;
}
0