結果

問題 No.2912 0次パーシステントホモロジー
ユーザー 👑 p-adicp-adic
提出日時 2023-08-20 17:18:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,127 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 208,192 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-10-04 20:50:11
合計ジャッジ時間 3,014 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

// 入力制約チェック
// #define _GLIBCXX_DEBUG 
#include<bits/stdc++.h>
using namespace std;

#define CIN( LL , A ) LL A; cin >> A 
#define UNTIE ios_base::sync_with_stdio( false ); cin.tie( nullptr ) 
#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 

int main()
{
  UNTIE;
  constexpr const int bound = 100001;
  CIN( int , N_V );
  assert( 0 <= N_V && N_V < bound );
  CIN( int , N_E );
  assert( 0 <= N_E && N_E < bound && ( N_V < 317 ? N_E <= N_V * ( N_V - 1 ) / 2 : true ) );
  set<pair<int,int> > E{};
  FOR( j , 0 , N_E ){
    CIN( int , i0 );
    CIN( int , i1 );
    CIN( int , w );
    assert( 0 <= i0 && i0 < i1 && i1 < N_V );
    assert( 0 < w && w < bound );
    E.insert( { i0 , i1 } );
  }
  assert( int( E.size() ) == N_E );
  CIN( int , T );
  assert( 1 <= T && T < bound );
  FOR( t , 0 , T ){
    CIN( int , Rt );
    assert( 0 <= Rt && Rt < bound );
  }
  cout << "入力制約OK!";
  QUIT;
}
0