結果

問題 No.2277 Honest or Dishonest ?
ユーザー HaaHaa
提出日時 2023-04-21 22:00:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,168 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 174,224 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-11-08 06:19:07
合計ジャッジ時間 7,474 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 102 ms
11,392 KB
testcase_04 AC 101 ms
11,776 KB
testcase_05 AC 31 ms
7,168 KB
testcase_06 AC 85 ms
9,984 KB
testcase_07 AC 70 ms
8,832 KB
testcase_08 AC 24 ms
7,040 KB
testcase_09 AC 64 ms
8,448 KB
testcase_10 AC 50 ms
7,296 KB
testcase_11 AC 22 ms
5,248 KB
testcase_12 AC 41 ms
6,528 KB
testcase_13 AC 97 ms
10,880 KB
testcase_14 AC 50 ms
7,040 KB
testcase_15 AC 26 ms
6,400 KB
testcase_16 AC 65 ms
8,832 KB
testcase_17 AC 32 ms
6,016 KB
testcase_18 AC 94 ms
10,880 KB
testcase_19 AC 99 ms
11,264 KB
testcase_20 AC 75 ms
9,728 KB
testcase_21 AC 67 ms
8,448 KB
testcase_22 AC 65 ms
8,832 KB
testcase_23 AC 94 ms
9,728 KB
testcase_24 AC 55 ms
8,064 KB
testcase_25 AC 71 ms
9,216 KB
testcase_26 AC 14 ms
6,528 KB
testcase_27 AC 46 ms
6,688 KB
testcase_28 AC 28 ms
6,272 KB
testcase_29 AC 46 ms
7,552 KB
testcase_30 AC 43 ms
6,912 KB
testcase_31 AC 79 ms
9,600 KB
testcase_32 AC 41 ms
7,296 KB
testcase_33 AC 103 ms
11,136 KB
testcase_34 AC 114 ms
11,904 KB
testcase_35 AC 9 ms
5,248 KB
testcase_36 AC 65 ms
8,576 KB
testcase_37 AC 104 ms
10,624 KB
testcase_38 AC 21 ms
5,248 KB
testcase_39 AC 30 ms
5,760 KB
testcase_40 AC 10 ms
5,248 KB
testcase_41 AC 119 ms
12,416 KB
testcase_42 AC 78 ms
9,600 KB
testcase_43 AC 130 ms
13,312 KB
testcase_44 AC 127 ms
13,184 KB
testcase_45 AC 128 ms
13,312 KB
testcase_46 AC 129 ms
13,184 KB
testcase_47 AC 132 ms
13,312 KB
testcase_48 AC 125 ms
13,312 KB
testcase_49 AC 125 ms
13,184 KB
testcase_50 AC 127 ms
13,184 KB
testcase_51 AC 130 ms
13,312 KB
testcase_52 AC 128 ms
13,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
template<typename T> bool chmax(T& x, const T& y){return (x<y)?(x=y,true):false;};
template<typename T> bool chmin(T& x, const T& y){return (x>y)?(x=y,true):false;};
constexpr ll MOD=998244353;
constexpr ll INF=2e18;

int main(){
    int n, q; cin >> n >> q;
    vector<vector<P>> g(n);
    int a, b, c;
    REP(i,q){
        cin >> a >> b >> c;
        a--, b--;
        g[b].push_back({a,c});
        g[a].push_back({b,c});
    }
    VI f(n,-1);
    bool no=0;
    function<void(int)> dfs=[&](int v){
        for(auto p:g[v]){
            int to=p.first, flag=p.second;
            if(f[to]==-1){
                f[to]=(f[v]==flag?0:1);
                dfs(to);
            }
            else if(f[to]!=(f[v]==flag?0:1))
                no=1;
        }
    };
    ll ans=1;
    REP(i,n){
        if(f[i]==-1){
            ans=ans*2%MOD;
            f[i]=0;
            dfs(i);
        }
    }
    if(no) ans=0;
    cout << ans << endl;
    return 0;
}
0