結果

問題 No.2911 位相の公理
ユーザー 👑 p-adicp-adic
提出日時 2023-03-04 14:24:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 1,610 bytes
コンパイル時間 608 ms
コンパイル使用メモリ 70,016 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-21 17:54:50
合計ジャッジ時間 1,480 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 13 ms
5,376 KB
testcase_20 AC 13 ms
5,376 KB
testcase_21 AC 13 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 13 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <stdio.h>
#include <stdint.h>
#include <cassert>

using namespace std;

#define TYPE_OF( VAR ) remove_const<remove_reference<decltype( VAR )>::type >::type
#define UNTIE ios_base::sync_with_stdio( false ); cin.tie( nullptr )
#define CEXPR( LL , BOUND , VALUE ) constexpr const LL BOUND = VALUE
#define CIN( LL , A ) LL A; cin >> A
#define ASSERT( A , MIN , MAX ) assert( ( MIN ) <= A && A <= ( MAX ) )
#define CIN_ASSERT( A , MIN , MAX ) CIN( TYPE_OF( MAX ) , A ); ASSERT( A , MIN , MAX )
#define FOR( VAR , INITIAL , FINAL_PLUS_ONE ) for( TYPE_OF( FINAL_PLUS_ONE ) VAR = INITIAL ; VAR < FINAL_PLUS_ONE ; VAR ++ )
#define REPEAT( HOW_MANY_TIMES ) FOR( VARIABLE_FOR_REPEAT , 0 , HOW_MANY_TIMES )
#define QUIT return 0
#define COUT( ANSWER ) cout << ( ANSWER ) << "\n";
#define RETURN( ANSWER ) COUT( ANSWER ); QUIT

int main()
{
  UNTIE;
  CEXPR( int , bound_N , 16 );
  CIN_ASSERT( N , 1 , bound_N );
  CEXPR( int , bound_M , 1 << 12 );
  CIN_ASSERT( M , 1 , N < 12 ? 1 << N : bound_M );
  bool O[1 << bound_N] = {};
  int s[bound_M] = {};
  string one = "1";
  FOR( m , 0 , M ){
    int& s_m = s[m];
    CIN( string , s_bit );
    FOR( n , 0 , N ){
      ( s_m <<= 1 ) |= ( s_bit.substr( n , 1 ) == one ? 1 : 0 );
    }
    assert( !( O[s_m] ) );
    O[s_m] = true;
  }
  if( ! O[0] ){
    RETURN( "No" );
  }
  if( ! O[ ( 1 << N ) - 1 ] ){
    RETURN( "No" );
  }
  FOR( m0 , 1 , M ){
    int& sm0 = s[m0];
    FOR( m1 , 0 , m0 ){
      int& sm1 = s[m1];
      if( ! O[ sm0 & sm1 ] || ! O[ sm0 | sm1 ] ){
	RETURN( "No" );
      }
    }
  }
  RETURN( "Yes" );
}
0