結果

問題 No.792 真理関数をつくろう
ユーザー tnakao0123tnakao0123
提出日時 2019-02-24 19:31:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 1,304 bytes
コンパイル時間 741 ms
コンパイル使用メモリ 84,568 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-06 02:34:39
合計ジャッジ時間 1,744 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 11 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 6 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 7 ms
6,940 KB
testcase_21 AC 14 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:44:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   44 |   scanf("%d", &n);
      |   ~~~~~^~~~~~~~~~
main.cpp:49:38: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   49 |     for (int j = 0; j < n; j++) scanf("%d", &qs[i][j]);
      |                                 ~~~~~^~~~~~~~~~~~~~~~~
main.cpp:50:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   50 |     scanf("%d", rs + i);
      |     ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 792.cc:  No.792 真理関数をつくろう - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 12;
const int NBITS = 1 << MAX_N;

/* typedef */

/* global variables */

int qs[NBITS][MAX_N], rs[NBITS];

/* subroutines */

/* main */

int main() {
  int n;
  scanf("%d", &n);

  int nbits = 1 << n;
  int ro = 0, ra = 1;
  for (int i = 0; i < nbits; i++) {
    for (int j = 0; j < n; j++) scanf("%d", &qs[i][j]);
    scanf("%d", rs + i);
    ro |= rs[i];
    ra &= rs[i];
    //printf("rs[%d]=%d\n", i, rs[i]);
  }
  //printf("ro=%d, ra=%d\n", ro, ra);

  if (ro == 0) puts("A=⊥");
  else if (ra == 1) puts("A=⊤");
  else {
    printf("A=");
    for (int i = 0, cont = 0; i < nbits; i++)
      if (rs[i]) {
	if (cont) printf("∨");
	cont = 1;

	putchar('(');
	for (int j = 0; j < n; j++) {
	  if (j) printf("∧");
	  if (! qs[i][j]) printf("¬");
	  printf("P_%d", j + 1);
	}
	putchar(')');
      }
    putchar('\n');
  }
  return 0;
}
0