結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,768 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,384 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,384 KB
testcase_09 AC 1 ms
4,384 KB
testcase_10 AC 4 ms
10,040 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 278 ms
29,292 KB
testcase_15 AC 276 ms
30,448 KB
testcase_16 AC 275 ms
31,404 KB
testcase_17 AC 280 ms
31,476 KB
testcase_18 AC 136 ms
15,688 KB
testcase_19 AC 147 ms
23,416 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!(Tuple!(int, int))();
  q.insertBack(tuple(0, n));
  auto used = new bool[N * 2];
  while(!q.empty){
    auto t = q.front;
    q.removeFront;
    if(t[0] % 2 == 1 && t[1] == n + N) return true;
    if(used[t[1]]) continue;
    used[t[1]] = true;
    foreach(c; E[t[1]]){
      if(used[c]) continue;
      q.insertBack(tuple(t[0] + 1, c));
    }
  }
  return false;
}

0