結果

問題 No.2202 贅沢てりたまチキン
ユーザー laneguelanegue
提出日時 2023-02-03 22:48:20
言語 D
(dmd 2.106.1)
結果
TLE  
実行時間 -
コード長 1,563 bytes
コンパイル時間 909 ms
コンパイル使用メモリ 84,812 KB
実行使用メモリ 33,468 KB
最終ジャッジ日時 2023-09-04 19:45:10
合計ジャッジ時間 6,308 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
11,488 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 4 ms
10,052 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 279 ms
30,456 KB
testcase_15 AC 279 ms
29,900 KB
testcase_16 AC 279 ms
33,204 KB
testcase_17 AC 283 ms
33,468 KB
testcase_18 AC 139 ms
15,760 KB
testcase_19 AC 148 ms
23,376 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.string;
import std.conv;
import std.typecons;
import std.container.dlist;

class DisjointSet{
	int[] parent;
	this(int size){
		parent = new int[size];
		parent[] = -1;
	}
	void unite(int x, int y){
		x = root(x);
		y = root(y);
		if(x == y) return;
		if(parent[x] > parent[y]){
			auto t = x;
			x = y;
			y = t;
		}
		parent[x] += parent[y];
		parent[y] = x;
	}
	bool same(int x, int y){
		return root(x) == root(y);
	}
	int root(int x){
		if(parent[x] < 0) return x;
		parent[x] = root(parent[x]);
		return parent[x];
	}
	int size(int x){
		return -parent[root(x)];
	}
}
int N;
int M;
int[][] E;
void main(){
  auto s = readln.chomp.split;
  N = s[0].to!int;
  M = s[1].to!int;
  E = new int[][](N * 2);
  auto ds = new DisjointSet(N);
  for(auto m = 0; m < M; m++){
    s = readln.chomp.split;
    auto a = s[0].to!int - 1;
    auto b = s[1].to!int - 1;
    E[a] ~= b + N;
    E[a + N] ~= b;
    E[b] ~= a + N;
    E[b + N] ~= a;
    ds.unite(a, b);
  }
  auto result = true;
  bool[int] results;
  for(auto n = 0; n < N; n++){
    if(ds.root(n) in results) continue;
    auto r = dfs(n);
    if(!r){
      result = false;
      break;
    }
    results[ds.root(n)] = true;
  }
  writeln(result ? "Yes" : "No");
}

bool dfs(int n){
  auto q = DList!(int)(n);
  auto used = new bool[N * 2];
  while(!q.empty){
    auto t = q.front;
    q.removeFront;
    if(t == n + N) return true;
    if(used[t]) continue;
    used[t] = true;
    foreach(c; E[t]){
      if(used[c]) continue;
      q.insertBack(c);
    }
  }
  return false;
}

0