結果
問題 | No.792 真理関数をつくろう |
ユーザー | FF256grhy |
提出日時 | 2019-02-22 21:34:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,240 bytes |
コンパイル時間 | 1,667 ms |
コンパイル使用メモリ | 169,000 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-25 07:45:57 |
合計ジャッジ時間 | 2,792 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long signed int LL; typedef long long unsigned int LU; #define incII(i, l, r) for(int i = (l) ; i <= (r); ++i) #define incID(i, l, r) for(int i = (l) ; i < (r); ++i) #define decII(i, l, r) for(int i = (r) ; i >= (l); --i) #define decID(i, l, r) for(int i = (r) - 1; i >= (l); --i) #define inc(i, n) incID(i, 0, n) #define inc1(i, n) incII(i, 1, n) #define dec(i, n) decID(i, 0, n) #define dec1(i, n) decII(i, 1, n) #define inII(v, l, r) ((l) <= (v) && (v) <= (r)) #define inID(v, l, r) ((l) <= (v) && (v) < (r)) #define PB push_back #define EB emplace_back #define MP make_pair #define FI first #define SE second #define ALL(v) v.begin(), v.end() #define RALL(v) v.rbegin(), v.rend() template<typename T> bool setmin (T & a, T b) { if(b < a) { a = b; return true; } else { return false; } } template<typename T> bool setmax (T & a, T b) { if(b > a) { a = b; return true; } else { return false; } } template<typename T> bool setmineq(T & a, T b) { if(b <= a) { a = b; return true; } else { return false; } } template<typename T> bool setmaxeq(T & a, T b) { if(b >= a) { a = b; return true; } else { return false; } } LL mo(LL a, LL b) { assert(b > 0); a %= b; if(a < 0) { a += b; } return a; } LL fl(LL a, LL b) { assert(b > 0); return (a > 0 ? a / b : (a - b + 1) / b); } LL ce(LL a, LL b) { assert(b > 0); return (a < 0 ? a / b : (a + b - 1) / b); } #define bit(b, i) (((b) >> (i)) & 1) #define BC __builtin_popcountll #define SC(T, v) static_cast<T>(v) #define SI(v) SC(int, v.size()) #define SL(v) SC( LL, v.size()) #define RF(e, v) for(auto & e: v) #define ei else if #define UR assert(false) // ---- ---- int n, q[1 << 12][12], r[1 << 12]; int main() { cin >> n; inc(i, 1 << n) { inc(j, n) { cin >> q[i][j]; } cin >> r[i]; } int c = 0; inc(i, 1 << n) { c += r[i]; } string ans = "A="; if(c == 0) { ans += "⊥"; } ei(c == 1 << n) { ans += "⊤"; } else { inc(i, 1 << n) { if(r[i] == 0) { continue; } if(ans != "") { ans += "∨("; } inc(j, n) { if(j != 0) { ans += "∧"; } if(q[i][j] == 0) { ans += "¬"; } ans += "P_" + to_string(j + 1); } ans += ")"; } } cout << ans << endl; return 0; }