結果

問題 No.792 真理関数をつくろう
ユーザー keisuke6
提出日時 2022-08-23 16:52:35
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 2,010 ms
コンパイル使用メモリ 197,208 KB
最終ジャッジ日時 2025-01-31 03:09:51
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
  int N;
  cin>>N;
  string s = "A=";
  int count = 0;
  for(int i=0;i<(1<<N);i++){
    vector<int> A(N);
    for(int j=0;j<N;j++) cin>>A[j];
    int x;
    cin>>x;
    if(!x) continue;
    count++;
    s += "(";
    for(int j=0;j<N;j++){
      if(A[j] == 0) s += "¬";
      s += "P_";
      s += to_string(j+1);
      if(j != N-1) s += "∧";
      else s += ")∨";
    }
  }
  if(count == 0) cout<<"A=⊥"<<endl;
  else if(count == (1<<N)) cout<<"A=⊤"<<endl;
  else{
    for(int i=0;i<s.size()-3;i++) cout<<s[i];
    cout<<endl;
  }
}
0