結果

問題 No.2910 単体ホモロジー入門
ユーザー 👑 p-adicp-adic
提出日時 2023-09-08 15:59:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 2,260 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 213,772 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-26 09:21:39
合計ジャッジ時間 3,647 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 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 2 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 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
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 , 4 );
  CIN_ASSERT( N , 1 , bound_N );
  CEXPR( int , bound_M , ( bound_N * ( bound_N - 1 ) ) / 2 );
  CIN_ASSERT( M , 0 , bound_M );
  int ij[bound_M*2][2];
  FOR( m , 0 , M ){
    CIN( int , im );
    CIN( int , jm );
    assert( 0 <= im && im < jm && jm < N );
    FOR( k , 0 , m ){
      assert( ij[k][0] != im || ij[k][1] != jm );
    }
    ij[m][0] = ij[m+M][1] = im;
    ij[m][1] = ij[m+M][0] = jm;
  }
  set<int> vertex_exception{};
  REPEAT( 3 ){
    CIN_ASSERT( v , 0 , N - 1 );
    vertex_exception.insert( v );
  }
  int M2 = M * 2;
  FOR( m0 , 0 , M2 ){
    FOR( m1 , 0 , M2 ){
      FOR( m2 , 0 , M2 ){
	if( tuple<int,int,int>( ij[m0][1] , ij[m1][1] , ij[m2][1] ) == tuple<int,int,int>( ij[m1][0] , ij[m2][0] , ij[m0][0] ) ){
	  set<int> edge{ m0 % M , m1 % M , m2 % M };
	  set<int> vertex{ ij[m0][0] , ij[m1][0] , ij[m2][0] };
	  if( vertex.size() == 3 && edge.size() == 3 && vertex != vertex_exception ){
	    RETURN( "Yes" );
	  }
	  continue;
	}
	FOR( m3 , 0 , M2 ){
	  if( tuple<int,int,int,int>( ij[m0][1] , ij[m1][1] , ij[m2][1] , ij[m3][1] ) == tuple<int,int,int,int>( ij[m1][0] , ij[m2][0] , ij[m3][0] , ij[m0][0] ) ){
	    set<int> edge{ m0 % M , m1 % M , m2 % M , m3 % M };
	    set<int> vertex{ ij[m0][0] , ij[m1][0] , ij[m2][0] , ij[m3][0] };
	    if( vertex.size() == 4 && edge.size() == 4 ){
	      RETURN( "Yes" );
	    }
	    continue;
	  }
	}
      }
    }
  }
  RETURN( "No" );
}
0