結果

問題 No.1194 Replace
ユーザー e869120e869120
提出日時 2021-03-05 19:33:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 1,333 bytes
コンパイル時間 1,056 ms
コンパイル使用メモリ 95,568 KB
実行使用メモリ 31,320 KB
最終ジャッジ日時 2024-10-06 21:46:18
合計ジャッジ時間 8,107 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
26,968 KB
testcase_01 AC 252 ms
27,740 KB
testcase_02 AC 193 ms
25,304 KB
testcase_03 AC 162 ms
23,772 KB
testcase_04 AC 270 ms
27,608 KB
testcase_05 AC 246 ms
26,896 KB
testcase_06 AC 224 ms
26,076 KB
testcase_07 AC 359 ms
31,188 KB
testcase_08 AC 349 ms
31,196 KB
testcase_09 AC 352 ms
31,192 KB
testcase_10 AC 360 ms
31,192 KB
testcase_11 AC 356 ms
31,320 KB
testcase_12 AC 355 ms
31,192 KB
testcase_13 AC 220 ms
26,204 KB
testcase_14 AC 191 ms
25,044 KB
testcase_15 AC 155 ms
23,128 KB
testcase_16 AC 214 ms
25,688 KB
testcase_17 AC 153 ms
22,872 KB
testcase_18 AC 152 ms
22,868 KB
testcase_19 AC 213 ms
25,688 KB
testcase_20 AC 10 ms
15,744 KB
testcase_21 AC 11 ms
15,744 KB
testcase_22 AC 10 ms
15,744 KB
testcase_23 AC 68 ms
18,904 KB
testcase_24 AC 27 ms
16,756 KB
testcase_25 AC 19 ms
16,128 KB
testcase_26 AC 90 ms
19,924 KB
testcase_27 AC 27 ms
16,496 KB
testcase_28 AC 48 ms
17,620 KB
testcase_29 AC 14 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <set>
#include <queue>
#include <cmath>
#include <vector>
#include <string>
#include <algorithm>
#include <functional>
using namespace std;
#pragma warning (disable: 4996)

long long N, M;
long long B[1 << 19], C[1 << 19];
long long col[1 << 19];
vector<long long> X;
vector<long long> G[1 << 19];

int main() {
	// Step #1. 入力
	cin >> N >> M;
	for (int i = 1; i <= M; i++) {
		cin >> B[i] >> C[i];
		X.push_back(B[i]);
		X.push_back(C[i]);
	}

	// Step #2. 座標圧縮
	sort(X.begin(), X.end());
	X.erase(unique(X.begin(), X.end()), X.end());
	for (int i = 1; i <= M; i++) B[i] = lower_bound(X.begin(), X.end(), B[i]) - X.begin();
	for (int i = 1; i <= M; i++) C[i] = lower_bound(X.begin(), X.end(), C[i]) - X.begin();
	for (int i = 1; i <= M; i++) G[C[i]].push_back(B[i]);

	// Step #3. 計算
	for (int i = 0; i < X.size(); i++) col[i] = -1;
	for (int i = X.size() - 1; i >= 0; i--) {
		if (col[i] != -1) continue;
		queue<int> Q; Q.push(i); col[i] = i;
		while (!Q.empty()) {
			int pos = Q.front(); Q.pop();
			for (int j : G[pos]) {
				if (col[j] == -1) { col[j] = i; Q.push(j); }
			}
		}
	}

	// Step #4. 答えを求める
	long long Answer = N * (N + 1LL) / 2LL;
	for (int i = 0; i < X.size(); i++) {
		Answer += (X[col[i]] - X[i]);
	}
	cout << Answer << endl;
	return 0;
}
0