結果

問題 No.2277 Honest or Dishonest ?
ユーザー georgejshgeorgejsh
提出日時 2023-04-21 22:26:30
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 5,871 bytes
コンパイル時間 2,852 ms
コンパイル使用メモリ 165,316 KB
実行使用メモリ 16,376 KB
最終ジャッジ日時 2024-04-25 19:01:31
合計ジャッジ時間 5,796 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,108 KB
testcase_01 AC 4 ms
8,064 KB
testcase_02 AC 4 ms
8,056 KB
testcase_03 AC 50 ms
15,112 KB
testcase_04 AC 48 ms
14,900 KB
testcase_05 AC 16 ms
10,560 KB
testcase_06 AC 40 ms
13,824 KB
testcase_07 AC 34 ms
12,984 KB
testcase_08 AC 13 ms
10,292 KB
testcase_09 AC 28 ms
12,016 KB
testcase_10 AC 25 ms
11,524 KB
testcase_11 AC 13 ms
9,804 KB
testcase_12 AC 19 ms
10,960 KB
testcase_13 AC 45 ms
14,720 KB
testcase_14 AC 23 ms
11,284 KB
testcase_15 AC 13 ms
10,048 KB
testcase_16 AC 34 ms
12,744 KB
testcase_17 AC 18 ms
10,388 KB
testcase_18 AC 42 ms
14,060 KB
testcase_19 AC 42 ms
14,560 KB
testcase_20 AC 37 ms
13,312 KB
testcase_21 AC 31 ms
12,644 KB
testcase_22 AC 33 ms
12,496 KB
testcase_23 AC 40 ms
13,960 KB
testcase_24 AC 26 ms
11,804 KB
testcase_25 AC 30 ms
12,468 KB
testcase_26 AC 8 ms
9,608 KB
testcase_27 AC 23 ms
11,284 KB
testcase_28 AC 14 ms
10,052 KB
testcase_29 AC 23 ms
10,956 KB
testcase_30 AC 21 ms
10,984 KB
testcase_31 AC 35 ms
13,292 KB
testcase_32 AC 21 ms
10,756 KB
testcase_33 AC 42 ms
14,584 KB
testcase_34 AC 50 ms
15,524 KB
testcase_35 AC 7 ms
8,912 KB
testcase_36 AC 31 ms
12,628 KB
testcase_37 AC 47 ms
14,672 KB
testcase_38 AC 12 ms
9,512 KB
testcase_39 AC 15 ms
10,328 KB
testcase_40 AC 7 ms
8,876 KB
testcase_41 AC 52 ms
15,928 KB
testcase_42 AC 37 ms
13,576 KB
testcase_43 AC 56 ms
16,000 KB
testcase_44 AC 56 ms
16,240 KB
testcase_45 AC 56 ms
16,300 KB
testcase_46 AC 60 ms
16,200 KB
testcase_47 AC 54 ms
16,244 KB
testcase_48 AC 57 ms
16,264 KB
testcase_49 AC 54 ms
16,204 KB
testcase_50 AC 56 ms
16,080 KB
testcase_51 AC 55 ms
16,376 KB
testcase_52 AC 59 ms
16,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>


using namespace std;


typedef long long int ll;
typedef long double ld;

typedef pair<ll, ll> pi;
typedef pair<ld,ld> pd;

typedef vector<ll> vi;
typedef vector<ld> vd;
typedef vector<pi> vpi;

#define repab(i, a, b) for (ll i = (a); i < (b); i++)
#define repabs(i, a, b,s) for (ll i = (a); i < (b); i+=(s))
#define rep(i, a) for (ll i = 0; i < (a); i++)
#define rrepab(i,a,b) for (ll i = (b)-1; i >= (a); i--)
#define rrepabs(i,a,b,s) for (ll i = (b)-1; i >= (a); i-=(s))
#define rrep(i,a) for (ll i = (a)-1; i >= 0; i--)
#define iter(a, x) for (auto& a : x)
#define repeat(i, begin, end) for (__typeof(end) i = (begin) - ((begin) > (end)); i != (end) - ((begin) > (end)); i += 1 - 2 * ((begin) > (end)))
#define GET5(a, b, c, d, e, ...) e
#define F_ORC(...) GET5(__VA_ARGS__, repabs, repab, rep)
#define F_ORRC(...) GET5(__VA_ARGS__, rrepabs, rrepab, rrep)
#define FOR(...) F_ORC(__VA_ARGS__)(__VA_ARGS__)
#define FORR(...) F_ORRC(__VA_ARGS__)(__VA_ARGS__)
#define v(a) vector<array<ll,a>>
#define minheap(a) priority_queue<array<ll,a>,vector<array<ll,a>>,greater<array<ll,a>> >

#define rloop(n) int n;re(n);rep(i,n)
#define array(n) array<ll,n>
#define rea(arr,n) int n;re(n);vi arr(n);re(arr);

#define mk make_pair
#define pb push_back
#define fi first
#define se second
#define lb lower_bound
#define ub upper_bound

#define sz(x) (int)x.size()
#define beg(x) x.begin()
#define en(x) x.end()
#define all(x) beg(x), en(x)
#define resz resize


template<class T> void ckmin(T &a, T b) { a = min(a, b); }
template<class T> void ckmax(T &a, T b) { a = max(a, b); }

namespace io {
     #define error(args...) { string _s = #args; replace(_s.begin(), _s.end(), ',', ' '); stringstream _ss(_s); istream_iterator<string> _it(_ss);cerr<< "line: "<<__LINE__ <<" "; err(_it, args); cerr<<endl;}

    void err(istream_iterator<string> it) {}
    
    
   
    // TYPE ID (StackOverflow)
    template<class T> struct like_array : is_array<T>{};
    template<class T, size_t N> struct like_array<array<T,N>> : true_type{};
    template<class T> struct like_array<vector<T>> : true_type{};
    template<class T> bool is_like_array(const T& a) { return like_array<T>::value; }
    
    
    // INPUT 
    
    template<class T> void re(T& x) { cin >> x; }
    template<class Arg, class... Args> void re(Arg& first, Args&... rest);
    void re(double& x) { string t; re(t); x = stod(t); }
    void re(ld& x) { string t; re(t); x = stold(t); }
    
    template<class T1, class T2> void re(pair<T1,T2>& p);
    template<class T> void re(vector<T>& a);
    template<class T, size_t SZ> void re(array<T,SZ>& a);
    
    template<class Arg, class... Args> void re(Arg& first, Args&... rest) { re(first); re(rest...); }
    template<class T1, class T2> void re(pair<T1,T2>& p) { re(p.fi,p.se); }
    template<class T> void re(vector<T>& a) { rep(i,sz(a)) re(a[i]); }
    template<class T, size_t SZ> void re(array<T,SZ>& a) { rep(i,SZ) re(a[i]); }
    template<class T, size_t SZ> ostream& operator<<(ostream& os, const array<T,SZ>& a);
    template<class T> ostream& operator<<(ostream& os, const vector<T>& a);
    template<class T> ostream& operator<<(ostream& os, const set<T>& a) ;
    template<class T1, class T2> ostream& operator<<(ostream& os, const map<T1,T2>& a) ;
    // OUTPUT 
    
    template<class T1, class T2> ostream& operator<<(ostream& os, const pair<T1,T2>& a) {
        os << '{' << a.fi << ", " << a.se << '}'; return os;
    }
    template<class T> ostream& printArray(ostream& os, const T& a, int SZ) {
        os << '{';
        rep(i,SZ) {
            if (i) {
                os << ", ";
                if (is_like_array(a[i])) cout << " ";
            }
            os << a[i];
        }
        os << '}';
        return os;
    }
    template<class T, size_t SZ> ostream& operator<<(ostream& os, const array<T,SZ>& a) {
        return printArray(os,a,SZ);
    }
    template<class T> ostream& operator<<(ostream& os, const vector<T>& a) {
        return printArray(os,a,sz(a));
    }
    template<class T> ostream& operator<<(ostream& os, const set<T>& a) {
        os << vector<T>(all(a)); return os;
    }
    template<class T1, class T2> ostream& operator<<(ostream& os, const map<T1,T2>& a) {
        os << vector<pair<T1,T2>>(all(a)); return os;
    }
    
    template<class T> void pr(const T& x) { cout << x << '\n'; }
    template<class Arg, class... Args> void pr(const Arg& first, const Args&... rest) { 
        cout << first << ' '; pr(rest...); 
    }
    template<typename T, typename... Args>
    void err(istream_iterator<string> it, T a, Args... args) {
        cerr << *it << " = " << a<<" " ;
        err(++it, args...);
    }
    template<typename T>
    void pa(vector<T> &a,bool psize=true){
        if(psize) cout<<a.size()<<"\n";
        iter(x,a) cout<<x<<" ";
        cout<<"\n";
    }
}
using namespace io;

//const int MOD = 1000000007;
const int MOD = 998244353;
const ll INF = 1e18;
const int MX = 2e5+1;

#define yes cout<<"YES\n"
#define no cout<<"NO\n"
vpi adj[MX];
vi vis;
vi val;
bool dfs(int u,int p=-1,int c=0){
    bool ans=true;
    if(vis[u]) return true;
    vis[u]=true;
    val[u]=c;
    //error(u);
    iter(x,adj[u]){
        if(val[x.fi]!=-1){
            if((x.se^c)!=val[x.fi]) return false; 
        }
        if(x.fi!=p)
        ans&=dfs(x.fi,u,c^x.se);
    }
    return ans;
}
void solve(){
    int n,q;
    re(n,q);
    vis.resize(n);
    rep(i,n)vis[i]=false;
    val.resize(n);
    rep(i,n)val[i]=-1;
    rep(i,q){
        int x,y,z;
        re(x,y,z);x--;y--;
        adj[x].pb(mk(y,z));
        adj[y].pb(mk(x,z));
    }
    ll ans=1;
    rep(i,n){
        if(!vis[i]) {if(!dfs(i)) ans=0;else ans=ans*2%MOD;}
    }
    cout<<ans<<"\n";
}
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    //rloop(t){
        solve();
    //}
    return 0;
}
0