結果

問題 No.2536 同値性と充足可能性
ユーザー maksimmaksim
提出日時 2023-11-10 23:24:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 1,333 bytes
コンパイル時間 1,575 ms
コンパイル使用メモリ 174,356 KB
実行使用メモリ 34,432 KB
最終ジャッジ日時 2024-09-26 02:21:01
合計ジャッジ時間 4,307 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
26,880 KB
testcase_01 AC 19 ms
26,880 KB
testcase_02 AC 20 ms
26,752 KB
testcase_03 AC 20 ms
26,752 KB
testcase_04 AC 22 ms
26,752 KB
testcase_05 AC 23 ms
26,752 KB
testcase_06 AC 21 ms
26,752 KB
testcase_07 AC 21 ms
26,880 KB
testcase_08 AC 22 ms
26,752 KB
testcase_09 AC 22 ms
26,752 KB
testcase_10 AC 21 ms
26,880 KB
testcase_11 AC 22 ms
26,880 KB
testcase_12 AC 21 ms
26,880 KB
testcase_13 AC 22 ms
26,752 KB
testcase_14 AC 23 ms
26,752 KB
testcase_15 AC 20 ms
26,752 KB
testcase_16 AC 22 ms
26,880 KB
testcase_17 AC 22 ms
26,880 KB
testcase_18 AC 22 ms
27,008 KB
testcase_19 AC 19 ms
26,752 KB
testcase_20 AC 22 ms
27,116 KB
testcase_21 AC 21 ms
27,520 KB
testcase_22 AC 23 ms
27,520 KB
testcase_23 AC 51 ms
33,024 KB
testcase_24 AC 52 ms
32,384 KB
testcase_25 AC 76 ms
33,920 KB
testcase_26 AC 78 ms
33,920 KB
testcase_27 AC 84 ms
34,432 KB
testcase_28 AC 74 ms
33,920 KB
testcase_29 AC 73 ms
33,680 KB
testcase_30 AC 71 ms
33,920 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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) {cout<<"No"<<endl;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];bool bad=0;
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 {if(x==y) {puts("No");return 0;} 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;bad=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) {cout<<"No"<<endl;exit(0);}
    int s=accumulate(col,col+n,0LL);
    if(2*s==n) {cout<<"No"<<endl;exit(0);}
    cout<<"Yes"<<endl;
    cout<<s<<endl;
    int lst=n-1;while(!col[lst]) --lst;
    for(int i=0;i<maxn;++i) {if(col[i]) if(i!=lst) cout<<i+1<<' '; else cout<<i+1; }
    return 0;
}
0