結果

問題 No.1124 Earthquake Safety
ユーザー catuppercatupper
提出日時 2020-07-23 00:12:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 424 ms / 3,000 ms
コード長 1,342 bytes
コンパイル時間 861 ms
コンパイル使用メモリ 92,448 KB
実行使用メモリ 62,760 KB
最終ジャッジ日時 2024-06-23 02:39:45
合計ジャッジ時間 18,280 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
11,264 KB
testcase_01 AC 8 ms
11,136 KB
testcase_02 AC 7 ms
11,264 KB
testcase_03 AC 7 ms
11,264 KB
testcase_04 AC 7 ms
11,136 KB
testcase_05 AC 8 ms
11,264 KB
testcase_06 AC 8 ms
11,136 KB
testcase_07 AC 16 ms
12,160 KB
testcase_08 AC 122 ms
20,536 KB
testcase_09 AC 424 ms
39,612 KB
testcase_10 AC 299 ms
62,760 KB
testcase_11 AC 5 ms
11,264 KB
testcase_12 AC 6 ms
11,264 KB
testcase_13 AC 5 ms
11,264 KB
testcase_14 AC 400 ms
39,704 KB
testcase_15 AC 383 ms
39,680 KB
testcase_16 AC 390 ms
39,488 KB
testcase_17 AC 396 ms
39,676 KB
testcase_18 AC 398 ms
39,504 KB
testcase_19 AC 377 ms
39,644 KB
testcase_20 AC 386 ms
39,500 KB
testcase_21 AC 393 ms
39,496 KB
testcase_22 AC 392 ms
39,680 KB
testcase_23 AC 381 ms
39,392 KB
testcase_24 AC 362 ms
39,412 KB
testcase_25 AC 359 ms
39,364 KB
testcase_26 AC 370 ms
39,552 KB
testcase_27 AC 355 ms
40,856 KB
testcase_28 AC 360 ms
40,832 KB
testcase_29 AC 363 ms
44,888 KB
testcase_30 AC 372 ms
44,940 KB
testcase_31 AC 377 ms
53,888 KB
testcase_32 AC 385 ms
52,168 KB
testcase_33 AC 384 ms
51,456 KB
testcase_34 AC 376 ms
53,332 KB
testcase_35 AC 358 ms
39,156 KB
testcase_36 AC 346 ms
39,296 KB
testcase_37 AC 346 ms
40,448 KB
testcase_38 AC 356 ms
40,320 KB
testcase_39 AC 343 ms
40,028 KB
testcase_40 AC 341 ms
40,576 KB
testcase_41 AC 337 ms
40,160 KB
testcase_42 AC 377 ms
40,704 KB
testcase_43 AC 378 ms
40,848 KB
testcase_44 AC 342 ms
40,960 KB
testcase_45 AC 348 ms
40,576 KB
testcase_46 AC 344 ms
40,832 KB
testcase_47 AC 335 ms
40,420 KB
testcase_48 AC 328 ms
40,412 KB
testcase_49 AC 339 ms
40,264 KB
testcase_50 AC 5 ms
11,264 KB
testcase_51 AC 5 ms
11,264 KB
testcase_52 AC 5 ms
11,136 KB
testcase_53 AC 4 ms
11,336 KB
testcase_54 AC 5 ms
11,264 KB
testcase_55 AC 5 ms
11,136 KB
testcase_56 AC 4 ms
11,264 KB
testcase_57 AC 4 ms
11,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<vector>
#include<map>
#include<set>
#include<string>
#include<queue>
#include<stack>
#include<complex>
using namespace std;
#define MOD 1000000007
#define MOD2 998244353
#define INF (1<<29)
#define LINF (1LL<<60)
#define EPS (1e-10)
#define PI 3.1415926535897932384626433832795028
typedef long long Int;
typedef pair<Int, Int> P;
typedef long double Real;
typedef complex<Real> CP;


Int dp[330000][8];

vector<int> edge[330000];

void dfs(int x, int last = -1){
    for(int i = 0;i < 8;i++)dp[x][i] = 1;
    for(auto to:edge[x]){
        if(to == last)continue;
        dfs(to, x);
        for(int i = 7;i >= 0;i--){
            Int tmp = 0;
            for(int j = 0;j < 8;j++){
                if((j & i) == j){                    
                    (tmp += dp[x][i-j] * dp[to][j] % MOD) %= MOD;//use
                    if(j == 0)(tmp += dp[x][i] * dp[to][0] % MOD) %= MOD;//cut
                }
            }
            if(i == 7)(tmp += dp[x][0] * dp[to][7] % MOD) %=MOD;//cut
            dp[x][i] = tmp;
        }
    }
}

int main(){
    int n, a, b;
    cin >> n;
    for(int i = 0;i < n-1;i++){
        cin >> a >> b;
        edge[a].push_back(b);
        edge[b].push_back(a);
    }

    dfs(1);
    cout << dp[1][7] << endl;
    
    return 0;
}
0