結果

問題 No.1194 Replace
ユーザー square1001square1001
提出日時 2020-08-22 13:51:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,202 bytes
コンパイル時間 1,058 ms
コンパイル使用メモリ 87,968 KB
実行使用メモリ 118,900 KB
最終ジャッジ日時 2024-04-23 08:15:59
合計ジャッジ時間 7,947 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

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];
	}
	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) {
		vis = vector<bool>(comp.size(), false);
		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