結果

問題 No.8092 3-2-SAT
ユーザー SSRSSSRS
提出日時 2022-04-01 21:30:18
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 2,313 ms
コンパイル使用メモリ 191,760 KB
最終ジャッジ日時 2025-01-28 13:45:11
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, M;
  cin >> N >> M;
  bool ok = true;
  for (int i = 0; i < M; i++){
    int p, q, a, b;
    cin >> p >> q >> a >> b;
    if (a != 1 && b != 1){
      ok = false;
    }
  }
  if (!ok){
    cout << -1 << endl;
  } else {
    for (int i = 0; i < N; i++){
      cout << 1;
      if (i < N - 1){
        cout << ' ';
      }
    }
    cout << endl;
  }
}
0