結果

問題 No.2277 Honest or Dishonest ?
ユーザー lddlinanlddlinan
提出日時 2023-04-21 22:08:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 2,051 bytes
コンパイル時間 1,059 ms
コンパイル使用メモリ 92,648 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-11-08 06:32:45
合計ジャッジ時間 4,719 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
7,936 KB
testcase_01 AC 6 ms
7,936 KB
testcase_02 AC 5 ms
7,808 KB
testcase_03 AC 43 ms
11,008 KB
testcase_04 AC 55 ms
13,696 KB
testcase_05 AC 19 ms
9,984 KB
testcase_06 AC 33 ms
9,600 KB
testcase_07 AC 32 ms
10,240 KB
testcase_08 AC 16 ms
9,728 KB
testcase_09 AC 33 ms
11,392 KB
testcase_10 AC 22 ms
8,960 KB
testcase_11 AC 15 ms
8,704 KB
testcase_12 AC 19 ms
8,576 KB
testcase_13 AC 37 ms
9,984 KB
testcase_14 AC 24 ms
8,704 KB
testcase_15 AC 17 ms
9,600 KB
testcase_16 AC 31 ms
10,112 KB
testcase_17 AC 17 ms
8,832 KB
testcase_18 AC 50 ms
13,184 KB
testcase_19 AC 52 ms
13,440 KB
testcase_20 AC 42 ms
12,032 KB
testcase_21 AC 27 ms
8,960 KB
testcase_22 AC 36 ms
11,520 KB
testcase_23 AC 34 ms
9,088 KB
testcase_24 AC 32 ms
11,264 KB
testcase_25 AC 36 ms
12,032 KB
testcase_26 AC 10 ms
9,088 KB
testcase_27 AC 20 ms
8,704 KB
testcase_28 AC 18 ms
9,728 KB
testcase_29 AC 26 ms
10,752 KB
testcase_30 AC 21 ms
9,088 KB
testcase_31 AC 34 ms
10,624 KB
testcase_32 AC 24 ms
10,624 KB
testcase_33 AC 53 ms
13,312 KB
testcase_34 AC 47 ms
11,392 KB
testcase_35 AC 9 ms
8,704 KB
testcase_36 AC 31 ms
10,112 KB
testcase_37 AC 37 ms
9,472 KB
testcase_38 AC 12 ms
8,192 KB
testcase_39 AC 15 ms
8,448 KB
testcase_40 AC 9 ms
8,576 KB
testcase_41 AC 48 ms
11,520 KB
testcase_42 AC 37 ms
10,880 KB
testcase_43 AC 64 ms
14,592 KB
testcase_44 AC 67 ms
14,592 KB
testcase_45 AC 67 ms
14,592 KB
testcase_46 AC 68 ms
14,720 KB
testcase_47 AC 67 ms
14,720 KB
testcase_48 AC 68 ms
14,592 KB
testcase_49 AC 65 ms
14,720 KB
testcase_50 AC 63 ms
14,592 KB
testcase_51 AC 69 ms
14,592 KB
testcase_52 AC 63 ms
14,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include <map>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <stack>
#include <algorithm>
#include <array>
#include <unordered_set>
#include <unordered_map>
#include <string>
using namespace std;

bool rcmp(int a, int b) { return a>b; }
typedef long long LL;
class mypcmp {
public:
    bool operator()(const int& a, const int& b) {
        return a<b;
    }
};


int gg[100004];
int gx[100004];
int sk[100004];
int findg(int g) {
    int st=0;
    while(g!=gg[g]) {
        sk[st++]=g;
        g=gg[g];
    }
    while(st) gg[sk[--st]]=g;
    return g;
}
void join(int a, int b) {
    if (gx[a]==gx[b]) gx[a]++;
    if (gx[a]>gx[b]) {
        gg[b]=a;
    } else gg[a]=b;
}
set<int> nei[100004];
char mk[100004];
int que[100004];
int as[100004], bs[100004], cs[100004];
#define MOD 998244353
int main() {
    int n, i, q, a, b, c, j;
    int h, t;
    LL r;
    scanf("%d %d", &n, &q);
    for (i=1; i<=n; i++) { gg[i]=i; gx[i]=0; }
    for (i=1; i<=q; i++) {
        scanf("%d %d %d", &a, &b, &c);
        as[i]=a; bs[i]=b; cs[i]=c;
        if (c==0) {
            a=findg(a); b=findg(b);
            if (a!=b) join(a,b);
        }
    }
    for (i=1; i<=q; i++) {
        a=as[i]; b=bs[i]; c=cs[i];
        if (c==1) {
            a=findg(a); b=findg(b);
            nei[a].insert(b);
            nei[b].insert(a);
        }
    }
    r=1;
    for (i=1; i<=n; i++) mk[i]=0;
    for (i=1; i<=n; i++) {
        a=findg(i);
        if (mk[a]) continue;
        r*=2; r%=MOD;
        h=t=0;
        mk[a]=1;
        que[h++]=a;
        while(t<h) {
            a=que[t++];
            for (auto b: nei[a]) {
                if (mk[b]) {
                    if (mk[a]==mk[b]) { r=-1; break; }
                }  else {
                    if (mk[a]==1) mk[b]=2; else mk[b]=1;
                    que[h++]=b;
                }
            }
            if (r<0) break;
        }
        if (r<0) break;
    }
    if (r<0) r=0;
    printf("%lld\n", r);

    return 0;
}
0