結果
問題 | No.2270 T0空間 |
ユーザー | 👑 p-adic |
提出日時 | 2023-01-21 22:57:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,952 bytes |
コンパイル時間 | 1,009 ms |
コンパイル使用メモリ | 76,264 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 05:44:53 |
合計ジャッジ時間 | 5,927 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 55 ms
6,944 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 130 ms
6,944 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 459 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | AC | 480 ms
6,940 KB |
testcase_20 | AC | 466 ms
6,940 KB |
testcase_21 | WA | - |
ソースコード
// 愚直解チェック #pragma GCC optimize ( "O3" ) #pragma GCC optimize( "unroll-loops" ) #pragma GCC target ( "sse4.2,fma,avx2,popcnt,lzcnt,bmi2" ) #include <iostream> #include <string> #include <stdio.h> #include <stdint.h> #include <cassert> using namespace std; using ull = unsigned long long; #define MAIN main #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 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() { CEXPR( int , bound_N , 1 << 8 ); CIN_ASSERT( N , 1 , bound_N ); CEXPR( int , bound_M , 1 << 16 ); CIN_ASSERT( M , 1 , N < 16 ? 1 << N : bound_M ); CEXPR( int , digit , 64 ); CEXPR( int , B , bound_N / digit ); static ull s[bound_M][B] = {}; string one = "1"; FOR( m , 0 , M ){ ull ( &s_m )[B] = s[m]; CIN( string , s_bit ); int i = 0; FOR( b , 0 , B ){ ull& s_mb = s_m[b]; REPEAT( digit ){ if( i >= N ){ break; } ( s_mb <<= 1 ) |= ( s_bit.substr( i , 1 ) == one ? 1 : 0 ); i++; } } } FOR( i , 1 , N ){ FOR( j , 0 , i ){ bool searching = true; FOR( m , 0 , M ){ ull ( &s_m )[B] = s[m]; if( ( s_m[i / digit] >> ( i % digit ) ) & 1 != ( s_m[j / digit] >> ( j % digit ) ) & 1 ){ searching = false; break; } } if( searching ){ COUT( "No" ); } } } RETURN( "Yes" ); }