結果

問題 No.2267 群の公理
ユーザー 👑 p-adicp-adic
提出日時 2022-09-24 00:54:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,429 bytes
コンパイル時間 788 ms
コンパイル使用メモリ 70,368 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-18 18:16:26
合計ジャッジ時間 1,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <stdio.h>
#include <stdint.h>
using namespace std;

#define CIN( LL , A ) LL A; cin >> A 
#define FOR( VAR , INITIAL , FINAL_PLUS_ONE ) for( remove_const<remove_reference<decltype( FINAL_PLUS_ONE )>::type >::type VAR = INITIAL ; VAR < FINAL_PLUS_ONE ; VAR ++ ) 
#define QUIT return 0 
#define RETURN( ANSWER ) cout << ( ANSWER ) << "\n"; QUIT 

#include <cassert>

#define MAIN main

int main()
{
  constexpr const int bound = 31;
  CIN( int , N );
  assert( N < bound );
  int T[bound][bound];
  FOR( i , 0 , N ){
    int ( &Ti )[bound] = T[i];
    FOR( j , 0 , N ){
      cin >> Ti[j];
      assert( Ti[j] < bound );
    }
  }
  FOR( n0 , 0 , N ){
    int ( &Tn0 )[bound] = T[n0];
    FOR( n1 , 0 , N ){
      int& Tn0n1 = Tn0[n1];
      int ( &Tn1 )[bound] = T[n1];
      FOR( n2 , 0 , N ){
	if( T[Tn0n1][n2] != Tn0[Tn1[n2]] ){
	  RETURN( "NO" );
	}
      }
    }
  }
  bool unit;
  FOR( e , 0 , N ){
    int ( &Te )[bound] = T[e];
    unit = true;
    FOR( n , 0 , N ){
      if( Te[n] != n ){
	unit = false;
	break;
      } else if( T[n][e] != n ){
	unit = false;
	break;
      }
    }
    if( unit ){
      FOR( n , 0 , N ){
	int ( &Tn )[bound] = T[n];
	unit = false;
	FOR( i , 0 , N ){
	  if( Tn[i] == e && T[i][n] == e ){
	      unit = true;
	      break;
	  }
	}
	if( ! unit ){
	  break;
	}
      }
      if( unit ){
	RETURN( "YES" );
      }
    }
  }
  RETURN( "NO" );
}
0