結果

問題 No.1382 Travel in Mitaru city
ユーザー Example0911Example0911
提出日時 2021-02-11 17:33:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 1,834 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 220,244 KB
実行使用メモリ 26,824 KB
最終ジャッジ日時 2024-07-18 06:01:40
合計ジャッジ時間 9,828 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 28 ms
6,944 KB
testcase_07 AC 23 ms
6,940 KB
testcase_08 AC 15 ms
6,940 KB
testcase_09 AC 30 ms
6,940 KB
testcase_10 AC 29 ms
6,940 KB
testcase_11 AC 97 ms
17,124 KB
testcase_12 AC 81 ms
17,296 KB
testcase_13 AC 81 ms
17,360 KB
testcase_14 AC 72 ms
17,184 KB
testcase_15 AC 92 ms
17,228 KB
testcase_16 AC 134 ms
26,824 KB
testcase_17 AC 149 ms
26,420 KB
testcase_18 AC 146 ms
26,288 KB
testcase_19 AC 150 ms
26,416 KB
testcase_20 AC 153 ms
26,288 KB
testcase_21 AC 149 ms
26,284 KB
testcase_22 AC 151 ms
26,284 KB
testcase_23 AC 149 ms
26,412 KB
testcase_24 AC 151 ms
26,304 KB
testcase_25 AC 153 ms
26,340 KB
testcase_26 AC 55 ms
11,004 KB
testcase_27 AC 55 ms
11,136 KB
testcase_28 AC 55 ms
11,008 KB
testcase_29 AC 57 ms
11,128 KB
testcase_30 AC 56 ms
11,272 KB
testcase_31 AC 50 ms
9,856 KB
testcase_32 AC 59 ms
11,136 KB
testcase_33 AC 54 ms
10,624 KB
testcase_34 AC 41 ms
8,576 KB
testcase_35 AC 25 ms
6,784 KB
testcase_36 AC 39 ms
9,856 KB
testcase_37 AC 8 ms
5,376 KB
testcase_38 AC 43 ms
10,592 KB
testcase_39 AC 12 ms
5,376 KB
testcase_40 AC 31 ms
8,832 KB
testcase_41 AC 36 ms
9,472 KB
testcase_42 AC 42 ms
10,752 KB
testcase_43 AC 37 ms
9,728 KB
testcase_44 AC 16 ms
5,888 KB
testcase_45 AC 33 ms
9,216 KB
testcase_46 AC 15 ms
5,504 KB
testcase_47 AC 47 ms
10,740 KB
testcase_48 AC 34 ms
8,576 KB
testcase_49 AC 49 ms
11,220 KB
testcase_50 AC 23 ms
6,912 KB
testcase_51 AC 111 ms
23,192 KB
testcase_52 AC 139 ms
26,616 KB
testcase_53 AC 33 ms
8,972 KB
testcase_54 AC 56 ms
14,172 KB
testcase_55 AC 132 ms
25,716 KB
testcase_56 AC 37 ms
11,460 KB
testcase_57 AC 76 ms
18,392 KB
testcase_58 AC 12 ms
5,952 KB
testcase_59 AC 36 ms
10,720 KB
testcase_60 AC 125 ms
24,952 KB
testcase_61 AC 3 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 7 ms
5,376 KB
testcase_64 AC 3 ms
5,376 KB
testcase_65 AC 2 ms
5,376 KB
testcase_66 AC 3 ms
5,376 KB
testcase_67 AC 3 ms
5,376 KB
testcase_68 AC 3 ms
5,376 KB
testcase_69 AC 2 ms
5,376 KB
testcase_70 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;
using P = pair<ll, ll>;
const ll INF = (1LL << 61);
ll mod = (ll)1e9 + 7;
struct UnionFind {
	vector<int>par, vsize, esize;
	UnionFind(int sz_) : par(sz_), vsize(sz_, 1), esize(sz_, 0) {
		for (int i = 0; i < sz_; i++)par[i] = i;
	}
	void init(int sz_) {
		par.resize(sz_);
		vsize.resize(sz_, 1);
		esize.resize(sz_, 0);
		for (int i = 0; i < sz_; i++)par[i] = i;
	}
	int root(int x) {
		if (par[x] == x)return x;
		else return par[x] = root(par[x]);
	}
	bool merge(int x, int y) {
		x = root(x), y = root(y);
		if (x == y) {
			esize[x]++;
			return false;
		}
		if (vsize[x] < vsize[y])swap(x, y);
		vsize[x] += vsize[y];
		esize[x] += esize[y] + 1;
		par[y] = x;
		return true;
	}
	bool issame(int x, int y) {
		return root(x) == root(y);
	}
	int vs(int x) {
		return vsize[root(x)];
	}
	int es(int x) {
		return esize[root(x)];
	}
};
signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	int N, M, S, T; cin >> N >> M >> S >> T; S--; T--;
	vector<int>p(N); for (int i = 0; i < N; i++)cin >> p[i];
	vector<vector<int>>G(N);
	for (int i = 0; i < M; i++) {
		int a, b; cin >> a >> b; a--; b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	map<int, vector<int>>mp;
	for (int i = 0; i < N; i++) {
		mp[p[i]].push_back(i);
	}
	vector<vector<int>>g;
	for (auto x : mp) {
		g.push_back(x.second);
	}
	// p_iが大きい淳に見ていく
	reverse(g.begin(), g.end());
	UnionFind uf(N);
	vector<bool>used(N);
	int ans = 0;
	for (auto x : g) {
		for (auto v : x) {
			used[v] = true;
			for (auto nv : G[v]) {
				if (used[nv]) {
					if (!uf.issame(v, nv)) {
						uf.merge(v, nv);
					}
				}
			}
		}
		bool ok = false;
		for (auto v : x) {
			if (uf.issame(v, S) && p[v] < p[S]) {
				ok = true;
			}
		}
		if (ok)ans++;
	}
	cout << ans << endl;
	return 0;
}
0