結果

問題 No.2277 Honest or Dishonest ?
ユーザー HIcoderHIcoder
提出日時 2023-07-08 12:35:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 2,344 bytes
コンパイル時間 1,231 ms
コンパイル使用メモリ 116,652 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-22 08:10:00
合計ジャッジ時間 6,818 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 106 ms
10,240 KB
testcase_04 AC 105 ms
10,624 KB
testcase_05 AC 32 ms
6,784 KB
testcase_06 AC 87 ms
8,704 KB
testcase_07 AC 70 ms
8,192 KB
testcase_08 AC 24 ms
6,784 KB
testcase_09 AC 63 ms
7,936 KB
testcase_10 AC 49 ms
6,656 KB
testcase_11 AC 23 ms
5,376 KB
testcase_12 AC 42 ms
5,376 KB
testcase_13 AC 101 ms
9,856 KB
testcase_14 AC 51 ms
5,888 KB
testcase_15 AC 27 ms
6,272 KB
testcase_16 AC 67 ms
8,192 KB
testcase_17 AC 32 ms
5,632 KB
testcase_18 AC 96 ms
10,112 KB
testcase_19 AC 99 ms
10,496 KB
testcase_20 AC 77 ms
8,960 KB
testcase_21 AC 66 ms
7,424 KB
testcase_22 AC 64 ms
8,192 KB
testcase_23 AC 90 ms
8,576 KB
testcase_24 AC 56 ms
7,552 KB
testcase_25 AC 69 ms
8,704 KB
testcase_26 AC 13 ms
6,144 KB
testcase_27 AC 46 ms
6,016 KB
testcase_28 AC 29 ms
6,144 KB
testcase_29 AC 45 ms
7,296 KB
testcase_30 AC 42 ms
6,400 KB
testcase_31 AC 75 ms
8,704 KB
testcase_32 AC 43 ms
7,040 KB
testcase_33 AC 100 ms
10,112 KB
testcase_34 AC 109 ms
10,880 KB
testcase_35 AC 8 ms
5,376 KB
testcase_36 AC 65 ms
7,936 KB
testcase_37 AC 99 ms
9,472 KB
testcase_38 AC 21 ms
5,376 KB
testcase_39 AC 31 ms
5,376 KB
testcase_40 AC 10 ms
5,376 KB
testcase_41 AC 118 ms
11,008 KB
testcase_42 AC 80 ms
8,960 KB
testcase_43 AC 128 ms
11,520 KB
testcase_44 AC 133 ms
12,288 KB
testcase_45 AC 130 ms
12,032 KB
testcase_46 AC 128 ms
12,160 KB
testcase_47 AC 128 ms
12,160 KB
testcase_48 AC 124 ms
12,160 KB
testcase_49 AC 126 ms
11,904 KB
testcase_50 AC 124 ms
11,136 KB
testcase_51 AC 125 ms
12,160 KB
testcase_52 AC 124 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
#include<algorithm>
#include<vector>
#include<string>
#include<set>
#include<map>
#include<numeric>
#include<queue>
#include<cmath>
#include <unordered_set>
using namespace std;
typedef long long ll;
const ll INF=1LL<<60;
typedef pair<int,int> P;
typedef pair<int,P> PP;
const ll MOD=998244353;



ll mod_pow(ll x,ll y,ll mod){
    ll res=1;
    while(y>0){
        if(y&1){
            res*=x;
            res%=mod;
        }
        x*=x;
        x%=mod;
        y/=2;
    }
    return res;
}


int main(){
    int N,Q;
    cin>>N>>Q;

    vector<int> A(Q),B(Q),C(Q);

    vector<vector<P>> G(N);

    for(int i=0;i<Q;i++){
        cin>>A[i]>>B[i]>>C[i];
        A[i]--;B[i]--;
       
        G[A[i]].emplace_back(B[i],C[i]);
        G[B[i]].emplace_back(A[i],C[i]);

        
    }

   
    vector<int> color(N,0);//まだ塗られていない


    auto dfs=[&](auto f,int now,int c)->bool{
        color[now]=c;

        for(auto [to,flag]:G[now]){
            if(color[to]!=0){
                if(flag==1){
                    //toとnowが同じ色ならNG
                    if(color[to]==color[now]) return false;
                }else{
                    //flag==0
                    if(color[to]!=color[now]) return false;
                }

            }else{
                
                if(flag==1){
                    //nowとtoは異なる色でなければならない
                    
                    if(!f(f,to,-c)){
                        return false;
                    }
                    
                   
                }else{
                    //nowとtoは同じ色でなければならない
                    
                    if(!f(f,to,c)){
                        return false;
                    }
                   
                }

            }
        }
        return true;

    };


    ll ans=1;

    for(int i=0;i<N;i++){
        if(color[i]==0){
            
            

            if(dfs(dfs,i,1)){
                ans*=2; //色の反転で塗り分け方が2通り
                ans%=MOD;
            }else{
                

                ans*=0;
            }

            // for(int i=0;i<N;i++){
            //     cout<<"color["<<i<<"]="<<color[i]<<endl;
            // }

        }
    }

    
    cout<<ans<<endl;


}
0