結果

問題 No.1983 [Cherry 4th Tune C] 南の島のマーメイド
ユーザー Dan4LifeDan4Life
提出日時 2024-09-23 17:19:09
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 213 ms / 4,000 ms
コード長 1,575 bytes
コンパイル時間 13,047 ms
コンパイル使用メモリ 278,404 KB
実行使用メモリ 53,580 KB
最終ジャッジ日時 2024-09-23 17:23:48
合計ジャッジ時間 26,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,660 KB
testcase_01 AC 3 ms
7,656 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
7,528 KB
testcase_04 AC 5 ms
7,656 KB
testcase_05 AC 4 ms
7,788 KB
testcase_06 AC 3 ms
7,656 KB
testcase_07 AC 17 ms
7,528 KB
testcase_08 AC 5 ms
7,828 KB
testcase_09 AC 6 ms
7,920 KB
testcase_10 AC 10 ms
8,876 KB
testcase_11 AC 10 ms
8,780 KB
testcase_12 AC 6 ms
7,832 KB
testcase_13 AC 95 ms
17,176 KB
testcase_14 AC 113 ms
22,052 KB
testcase_15 AC 107 ms
19,840 KB
testcase_16 AC 50 ms
16,260 KB
testcase_17 AC 121 ms
24,408 KB
testcase_18 AC 102 ms
19,524 KB
testcase_19 AC 143 ms
26,928 KB
testcase_20 AC 95 ms
19,108 KB
testcase_21 AC 117 ms
22,668 KB
testcase_22 AC 158 ms
29,240 KB
testcase_23 AC 201 ms
31,312 KB
testcase_24 AC 213 ms
31,172 KB
testcase_25 AC 192 ms
31,304 KB
testcase_26 AC 196 ms
31,176 KB
testcase_27 AC 202 ms
31,176 KB
testcase_28 AC 191 ms
31,180 KB
testcase_29 AC 209 ms
31,168 KB
testcase_30 AC 195 ms
31,304 KB
testcase_31 AC 202 ms
31,300 KB
testcase_32 AC 200 ms
31,184 KB
testcase_33 AC 3 ms
7,780 KB
testcase_34 AC 56 ms
12,796 KB
testcase_35 AC 160 ms
53,580 KB
testcase_36 AC 119 ms
22,224 KB
testcase_37 AC 3 ms
7,656 KB
testcase_38 AC 36 ms
7,656 KB
testcase_39 AC 139 ms
53,460 KB
testcase_40 AC 115 ms
23,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <chrono>
#include <random>
#include <sys/ucontext.h>
using namespace std;

#define int long long
#define fi first
#define se second
#define pb push_back
#define sz(a) (int)a.size()
#define all(a) begin(a),end(a)

using ll = long long;
using vi = vector<int>;
using ar2 = array<int,2>;
using ar4 = array<int,4>;

const int mxN = (int)2e5+2;
const int INF = (int)1e9;
const ll LINF = (ll)2e18;
const int MOD = (1ll<<61)-1;
int n, m, q, dfs_tim;
int st[mxN], low[mxN], vis[mxN];
vi adj[mxN];

struct DSU{
	int p[mxN], sz[mxN];
	void init(int n){
		for(int i = 1; i <= n; i++)
			p[i]=i, sz[i]=1;
	}
	int findSet(int i){ return i==p[i]?i:p[i]=findSet(p[i]); }
	bool isSameSet(int i, int j){return findSet(i)==findSet(j); }
	void unionSet(int i, int j){
		int x = findSet(i), y = findSet(j);
		if(x==y) return;
		if(sz[x]<sz[y])swap(x,y);
		p[y]=x, sz[x]+=sz[y];
	}
} dsu;

void dfs(int s, int p){
	st[s] = low[s] = dfs_tim++; vis[s] = 1;
	for(auto u : adj[s]){
		if(u==p) continue;
		if(!vis[u]){
			dfs(u,s); low[s]=min(low[s],low[u]);
			if(low[u]>st[s]) dsu.unionSet(s,u);
		}
		else low[s]=min(low[s],st[u]);
	}
	vis[s] = 2;
}

void solve(){
	cin >> n >> m >> q; dsu.init(n);
	for(int i = 1; i <= m; i++){
		int a, b; cin >> a >> b;
		adj[a].pb(b); adj[b].pb(a);
	}
	for(int i = 1; i <= n; i++) if(!vis[i]) dfs(i,-1);
	for(int i = 1; i <= q; i++){
		int x, y; cin >> x >> y;
		cout << (dsu.isSameSet(x,y)?"Yes":"No") << "\n";
	}
}

int32_t main(){
	ios_base::sync_with_stdio(false); cin.tie(0);
	int t = 1; //cin >> t;
	while(t--) solve();
}
0