結果

問題 No.2536 同値性と充足可能性
ユーザー maksimmaksim
提出日時 2023-11-10 22:50:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,211 bytes
コンパイル時間 1,874 ms
コンパイル使用メモリ 174,156 KB
実行使用メモリ 34,432 KB
最終ジャッジ日時 2024-09-26 02:02:18
合計ジャッジ時間 7,892 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 22 ms
27,008 KB
testcase_02 WA -
testcase_03 AC 22 ms
26,880 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 22 ms
27,008 KB
testcase_20 AC 27 ms
27,260 KB
testcase_21 AC 26 ms
27,392 KB
testcase_22 AC 25 ms
27,520 KB
testcase_23 AC 58 ms
33,152 KB
testcase_24 AC 56 ms
32,640 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'void dfs(long long int)':
main.cpp:13:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   13 |     for(auto [v,w]:a[x])
      |              ^
main.cpp: In function 'int32_t main()':
main.cpp:44:35: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   44 |     for(int i=0;i<n;++i) for(auto [x,w]:a[i]) if((col[i]^col[x])!=w) {puts("No");exit(0);}
      |                                   ^

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define int long long
const int maxn=1e6+5;
vector<pair<int,int> > a[maxn];
bool used[maxn];
int c[2];vector<int> g;int col[maxn];
void dfs(int x)
{
    used[x]=true;g.push_back(x);
    c[col[x]]++;
    for(auto [v,w]:a[x])
    {
        if(!used[v])
        {
            col[v]=(col[x]^w);
            dfs(v);
        }
    }
}
int32_t main()
{
    ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    int n,m;cin>>n>>m;
    for(int i=0;i<m;++i)
    {
        int x;string s;int y;cin>>x>>s>>y;--x;--y;
        if(s[2]=='=') {a[x].push_back({y,0});a[y].push_back({x,0});}
        else {a[x].push_back({y,1});a[y].push_back({x,1});}
    }
    for(int i=0;i<n;++i)
    {
        if(!used[i])
        {
            g.clear();c[0]=0;c[1]=0;
            dfs(i);
            if(c[1]<c[0])
            {
                for(int i:g) col[i]^=1;
            }
        }
    }
    for(int i=0;i<n;++i) for(auto [x,w]:a[i]) if((col[i]^col[x])!=w) {puts("No");exit(0);}
    int s=accumulate(col,col+n,0LL);
    if(2*s==n) {puts("No");exit(0);}
    cout<<"Yes"<<endl;
    cout<<s<<endl;
    for(int i=0;i<n;++i) if(col[i]) cout<<i+1<<' '; cout<<endl;
    return 0;
}
0