結果

問題 No.1112 冥界の音楽
ユーザー Ricky_ponRicky_pon
提出日時 2020-07-10 23:01:12
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,355 bytes
コンパイル時間 2,516 ms
コンパイル使用メモリ 165,564 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-07 22:23:41
合計ジャッジ時間 11,206 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 126 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 84 ms
5,376 KB
testcase_05 AC 64 ms
5,376 KB
testcase_06 AC 64 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 23 ms
5,376 KB
testcase_10 AC 64 ms
5,376 KB
testcase_11 AC 87 ms
5,376 KB
testcase_12 AC 85 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 497 ms
5,376 KB
testcase_15 AC 399 ms
5,376 KB
testcase_16 AC 486 ms
5,376 KB
testcase_17 AC 529 ms
5,376 KB
testcase_18 AC 527 ms
5,376 KB
testcase_19 AC 430 ms
5,376 KB
testcase_20 AC 504 ms
5,376 KB
testcase_21 AC 482 ms
5,376 KB
testcase_22 AC 450 ms
5,376 KB
testcase_23 AC 360 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 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:69:24: warning: format specifies type 'int' but the argument has type 'size_type' (aka 'unsigned long') [-Wformat]
   69 |         printf("%d\n", S.size());
      |                 ~~     ^~~~~~~~
      |                 %zu
main.cpp:88:22: warning: format specifies type 'long long' but the argument has type 'int' [-Wformat]
   88 |     printf("%lld\n", ans);
      |             ~~~~     ^~~
      |             %d
2 warnings generated.

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
#define For(i, a, b) for(int (i)=(int)(a); (i)<(int)(b); ++(i))
#define rFor(i, a, b) for(int (i)=(int)(a)-1; (i)>=(int)(b); --(i))
#define rep(i, n) For((i), 0, (n))
#define rrep(i, n) rFor((i), (n), 0)
#define fi first
#define se second
using namespace std;
typedef long long lint;
typedef unsigned long long ulint;
typedef pair<int, int> pii;
typedef pair<lint, lint> pll;
template<class T> bool chmax(T &a, const T &b){if(a<b){a=b; return true;} return false;}
template<class T> bool chmin(T &a, const T &b){if(a>b){a=b; return true;} return false;}
template<class T> T div_floor(T a, T b){
    if(b < 0) a *= -1, b *= -1;
    return a>=0 ? a/b : (a+1)/b-1;
}
template<class T> T div_ceil(T a, T b){
    if(b < 0) a *= -1, b *= -1;
    return a>0 ? (a-1)/b+1 : a/b;
}

constexpr int mod = 1000000007;
//constexpr lint INF = mod * mod;
constexpr int MAX = 200010;

using mat = array<array<int, 216>, 216>;
mat c;

void mul(mat a, mat b){
    int n = 216;
    rep(i, n)rep(j, n) c[i][j] = 0;
    rep(i, n){
        rep(k, n){
            rep(j, n){
                c[i][j] += (lint)a[i][k] * b[k][j] % mod;
                if(c[i][j] >= mod) c[i][j] -= mod;
            }
        }
    }
}

mat pow(mat a, int n){
    int m = 216;
    mat b;
    rep(i, m)rep(j, m) b[i][j] = (i == j);
    while(n){
        if(n & 1) mul(a, b), swap(b, c), --n;
        else mul(a, a), swap(a, c), n >>= 1;
    }
    return b;
}

int main(){
    int K, m; lint n;
    scanf("%d%d%lld", &K, &m, &n);
    int p[m], q[m], r[m];
    rep(i, m){
        scanf("%d%d%d", &p[i], &q[i], &r[i]);
        --p[i]; --q[i]; --r[i];
    }
    if(n == 3){
        set<pair<int, pii>> S;
        rep(i, m)if(p[i]==0 && r[i]==0) S.insert({p[i], {q[i], r[i]}});
        printf("%d\n", S.size());
        return 0;
    }

    mat a;
    rep(i, 216)rep(j, 216) a[i][j] = 0;
    int idx[6][6][6], cur = 0;
    rep(i, 6)rep(j, 6)rep(k, 6) idx[i][j][k] = cur++;

    rep(i, m)rep(j, m)if(q[i]==p[j] && r[i]==q[j]){
        a[idx[p[i]][q[i]][r[i]]][idx[p[j]][q[j]][r[j]]] = 1;
    }
    a = pow(a, n-3);

    int ans = 0;
    rep(j, K)rep(k, K)rep(s, K)rep(t, K){
        ans += a[idx[0][j][k]][idx[s][t][0]];
        if(ans >= mod) ans -= mod;
    }
    printf("%lld\n", ans);
}
0