結果

問題 No.1340 おーじ君をさがせ
ユーザー maspymaspy
提出日時 2020-09-26 17:40:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,280 bytes
コンパイル時間 779 ms
コンパイル使用メモリ 76,940 KB
実行使用メモリ 57,344 KB
最終ジャッジ日時 2024-05-05 02:32:16
合計ジャッジ時間 4,264 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
18,816 KB
testcase_01 WA -
testcase_02 AC 45 ms
57,216 KB
testcase_03 AC 27 ms
30,336 KB
testcase_04 AC 20 ms
21,504 KB
testcase_05 AC 34 ms
39,168 KB
testcase_06 AC 23 ms
25,088 KB
testcase_07 AC 18 ms
18,944 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 4 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 5 ms
5,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 6 ms
6,400 KB
testcase_21 AC 7 ms
5,376 KB
testcase_22 AC 6 ms
5,376 KB
testcase_23 AC 7 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 8 ms
5,376 KB
testcase_26 AC 6 ms
5,376 KB
testcase_27 AC 5 ms
5,376 KB
testcase_28 AC 7 ms
5,376 KB
testcase_29 AC 6 ms
5,376 KB
testcase_30 AC 7 ms
5,376 KB
testcase_31 AC 7 ms
5,376 KB
testcase_32 AC 9 ms
5,376 KB
testcase_33 AC 10 ms
5,376 KB
testcase_34 AC 10 ms
5,376 KB
testcase_35 AC 9 ms
5,376 KB
testcase_36 RE -
testcase_37 AC 34 ms
57,324 KB
testcase_38 AC 446 ms
57,344 KB
testcase_39 AC 10 ms
5,376 KB
testcase_40 AC 9 ms
5,376 KB
testcase_41 AC 9 ms
5,376 KB
testcase_42 AC 14 ms
14,208 KB
testcase_43 AC 13 ms
13,184 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 6 ms
5,376 KB
testcase_50 AC 6 ms
5,376 KB
testcase_51 AC 6 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 20 ms
21,376 KB
testcase_57 AC 20 ms
21,376 KB
testcase_58 AC 26 ms
30,336 KB
testcase_59 AC 5 ms
5,376 KB
testcase_60 AC 49 ms
57,088 KB
testcase_61 AC 4 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;
    vector<int> vec;
    for(int i=0;i<M;i++){
        int a, b;
        cin >> a >> b;
        vec.emplace_back(N*a+b);
    }
    sort(vec.begin(), vec.end());
    vec.erase(unique(vec.begin(), vec.end()), vec.end());
    M = vec.size();

    for(int i=0;i<M;i++){
        frm[i] = vec[i] / N;
        to[i] = vec[i] % N;
    }
    dp[0][0] = true;
    int T_max = 1100000/(M+1);
    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