結果

問題 No.1420 国勢調査 (Easy)
ユーザー outlineoutline
提出日時 2021-03-05 22:59:00
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 935 ms / 2,000 ms
コード長 1,899 bytes
コンパイル時間 5,418 ms
コンパイル使用メモリ 162,752 KB
実行使用メモリ 22,164 KB
最終ジャッジ日時 2024-10-07 04:22:56
合計ジャッジ時間 14,918 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 410 ms
12,992 KB
testcase_03 AC 427 ms
13,116 KB
testcase_04 AC 401 ms
12,984 KB
testcase_05 AC 409 ms
12,992 KB
testcase_06 AC 402 ms
12,984 KB
testcase_07 AC 117 ms
14,392 KB
testcase_08 AC 67 ms
14,148 KB
testcase_09 AC 44 ms
11,944 KB
testcase_10 AC 45 ms
12,072 KB
testcase_11 AC 45 ms
11,940 KB
testcase_12 AC 19 ms
8,428 KB
testcase_13 AC 209 ms
8,428 KB
testcase_14 AC 12 ms
8,020 KB
testcase_15 AC 201 ms
8,424 KB
testcase_16 AC 198 ms
8,428 KB
testcase_17 AC 204 ms
8,428 KB
testcase_18 AC 198 ms
8,428 KB
testcase_19 AC 198 ms
8,432 KB
testcase_20 AC 198 ms
8,428 KB
testcase_21 AC 215 ms
8,428 KB
testcase_22 AC 920 ms
18,068 KB
testcase_23 AC 928 ms
17,960 KB
testcase_24 AC 913 ms
17,916 KB
testcase_25 AC 920 ms
18,116 KB
testcase_26 AC 935 ms
17,960 KB
testcase_27 AC 69 ms
22,164 KB
testcase_28 AC 67 ms
22,036 KB
testcase_29 AC 68 ms
22,036 KB
testcase_30 AC 69 ms
22,164 KB
testcase_31 AC 66 ms
22,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <array>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <fstream>
#include <complex>
#include <cstring>
#include <unordered_map>
#include <unordered_set>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

using ll = long long;
constexpr int INF = 1001001001;
constexpr int mod = 1000000007;
// constexpr int mod = 998244353;

template<class T>
inline bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}
template<class T>
inline bool chmin(T& x, T y){
    if(x > y){
        x = y;
        return true;
    }
    return false;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int N, M;
    cin >> N >> M;
    vector<int> A(M), B(M), Y(M);
    for(int i = 0; i < M; ++i){
        cin >> A[i] >> B[i] >> Y[i];
        --A[i], --B[i];
    }

    vector<int> X(N);
    for(int k = 0; k < 30; ++k){
        two_sat ts(N);
        for(int i = 0; i < M; ++i){
            if(Y[i] >> k & 1){
                ts.add_clause(A[i], false, B[i], false);
                ts.add_clause(A[i], true, B[i], true);
            }
            else{
                ts.add_clause(A[i], false, B[i], true);
                ts.add_clause(A[i], true, B[i], false);
            }
        }
        if(!ts.satisfiable()){
            cout << -1 << endl;
            return 0;
        }
        auto sat = ts.answer();
        for(int i = 0; i < N; ++i){
            if(!sat[i])  X[i] += 1 << k;
        }
    }

    for(int i = 0; i < N; ++i)  cout << X[i] << '\n';

    return 0;
}
0