結果

問題 No.1565 Union
ユーザー maguromaguro
提出日時 2021-04-21 10:49:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 474 bytes
コンパイル時間 7,889 ms
コンパイル使用メモリ 309,960 KB
実行使用メモリ 4,508 KB
最終ジャッジ日時 2023-09-07 16:11:56
合計ジャッジ時間 8,967 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 WA -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include "testlib.h"
using namespace std;

int main(int argc,char* argv[]) {
    registerValidation(argc,argv);
    int N = inf.readInt(1,100000);
	inf.readSpace();
	int M = inf.readInt(0,100000);
	inf.readEoln();
	set<pair<int,int>> edge;
	for(int i = 0;i < M;i++) {
		int u = inf.readInt(1,N);
		inf.readSpace();
		int v = inf.readInt(1,N);
		inf.readEoln();
		ensure(u < v);
		ensure(!edge.count({u,v}) && !edge.count({v,u}));
	}
	inf.readEof();
}
0