結果

問題 No.792 真理関数をつくろう
ユーザー しとおしとお
提出日時 2019-02-22 22:24:01
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 15 ms / 2,000 ms
コード長 965 bytes
コンパイル時間 687 ms
コンパイル使用メモリ 72,516 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-25 09:28:01
合計ジャッジ時間 1,628 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <string>
#include <vector>
using namespace std;

int main(){
    int n;
    cin >> n;
    int pn=int(pow(2, n));
    vector<vector<int>>t(pn, vector<int>(n+1));
    for(int i=0; i<pn; i++){
        for(int j=0; j<n+1; j++){
            cin >> t[i][j];
        }
    }
    vector<string>ret;
    for(int i=0; i<pn; i++){
        if(t[i][n]){
            string str="";
            str.push_back('(');
            for(int j=0; j<n; j++){
                if(!t[i][j])str+="¬";
                str+="P_"+to_string(j+1);
                if(j!=n-1)str+="∧";
            }
            str.push_back(')');
            ret.push_back(str);
        }
    }
    cout << "A=";
    if(ret.size()==0)cout << "⊥";
    else if(ret.size()==pn)cout << "⊤";
    else{
        for(int i=0; i<ret.size(); i++){
            cout << ret[i];
            if(i!=ret.size()-1)cout << "∨";
        }
    }
    cout << endl;
    return 0;
}
0