結果

問題 No.1340 おーじ君をさがせ
ユーザー chocoruskchocorusk
提出日時 2021-01-16 15:22:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,663 bytes
コンパイル時間 1,519 ms
コンパイル使用メモリ 138,376 KB
実行使用メモリ 10,912 KB
最終ジャッジ日時 2024-05-05 18:05:02
合計ジャッジ時間 15,589 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 798 ms
5,376 KB
testcase_12 AC 122 ms
5,376 KB
testcase_13 AC 600 ms
5,376 KB
testcase_14 AC 1,700 ms
5,376 KB
testcase_15 AC 1,408 ms
5,376 KB
testcase_16 AC 93 ms
5,376 KB
testcase_17 AC 459 ms
5,376 KB
testcase_18 AC 820 ms
5,376 KB
testcase_19 AC 38 ms
5,376 KB
testcase_20 AC 8 ms
5,376 KB
testcase_21 AC 824 ms
5,376 KB
testcase_22 TLE -
testcase_23 AC 829 ms
5,376 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <stack>
#include <array>
#include <list>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
ll MOD;
vector<vector<ll>> matrixmul(int l, int m, int n, vector<vector<ll>> a, vector<vector<ll>> b){
	vector<vector<ll>> c(l, vector<ll>(n));
	for(int i=0; i<l; i++){
		for(int k=0; k<m; k++){
			for(int j=0; j<n; j++){
				(c[i][j]+=a[i][k]*b[k][j])%=MOD;
			}
		}
	}
	return c;
}
vector<vector<ll>> matrixpow(int n, vector<vector<ll>> a, ll k){
	vector<vector<ll>> ap=a, ans(n, vector<ll>(n));
	for(int i=0; i<n; i++) ans[i][i]=1;
	while(k){
		if(k&1) ans=matrixmul(n, n, n, ap, ans);
		ap=matrixmul(n, n, n, ap, ap);
		k>>=1;
	}
	return ans;
}
int main()
{
    int n, m; ll t; cin>>n>>m>>t;
    vector<vector<ll>> mat(n, vector<ll>(n));
    for(int i=0; i<m; i++){
        int a, b; cin>>a>>b;
        mat[a][b]++;
    }
    bool ok[101];
    fill(ok, ok+n, 1);
    random_device rd;
    mt19937 mt(rd());
    uniform_int_distribution rnd(500000000, 1000000000);
    for(int loop=0; loop<5; loop++){
        MOD=rnd(mt);
        auto matp=matrixpow(n, mat, t);
        for(int i=0; i<n; i++) if(matp[0][i]==0) ok[i]=0;
    }
    int ans=0;
    for(int i=0; i<n; i++) if(ok[i]) ans++;
    cout<<ans<<endl;
    return 0;
}
0