結果

問題 No.1194 Replace
ユーザー square1001square1001
提出日時 2020-08-22 13:49:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,189 bytes
コンパイル時間 982 ms
コンパイル使用メモリ 86,344 KB
実行使用メモリ 23,716 KB
最終ジャッジ日時 2024-04-23 08:13:55
合計ジャッジ時間 7,349 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 283 ms
23,600 KB
testcase_08 AC 296 ms
23,560 KB
testcase_09 AC 300 ms
23,556 KB
testcase_10 AC 288 ms
23,568 KB
testcase_11 AC 300 ms
23,568 KB
testcase_12 AC 290 ms
23,716 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 WA -
testcase_24 AC 17 ms
6,944 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <iostream>
#include <algorithm>
#include <functional>
using namespace std;
int main() {
	int N, M;
	cin >> N >> M;
	vector<int> B(M), C(M);
	for (int i = 0; i < M; ++i) {
		cin >> B[i] >> C[i]; --B[i], --C[i];
	}
	vector<int> comp;
	for (int i = 0; i < M; ++i) {
		comp.push_back(B[i]);
		comp.push_back(C[i]);
	}
	sort(comp.begin(), comp.end());
	comp.erase(unique(comp.begin(), comp.end()), comp.end());
	vector<vector<int> > G(comp.size());
	for (int i = 0; i < M; ++i) {
		int bp = lower_bound(comp.begin(), comp.end(), B[i]) - comp.begin();
		int cp = lower_bound(comp.begin(), comp.end(), C[i]) - comp.begin();
		G[bp].push_back(cp);
	}
	vector<bool> vis(comp.size(), false);
	vector<int> dp(comp.size());
	function<int(int)> dfs = [&](int pos) {
		vis[pos] = true;
		int res = pos;
		for (int i : G[pos]) {
			if (vis[i]) {
				res = max(res, dp[i]);
			}
			else {
				res = max(res, dfs(i));
			}
		}
		dp[pos] = res;
		return res;
	};
	for (int i = 0; i < comp.size(); ++i) {
		if (!vis[i]) dfs(i);
	}
	long long ans = 1LL * N * (N + 1) / 2;
	for (int i = 0; i < comp.size(); ++i) {
		ans += comp[dp[i]] - comp[i];
	}
	cout << ans << endl;
	return 0;
}
0