結果

問題 No.674 n連勤
ユーザー CELICACELICA
提出日時 2020-10-15 22:29:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 175,736 KB
実行使用メモリ 10,172 KB
最終ジャッジ日時 2024-07-20 20:02:56
合計ジャッジ時間 3,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 16 ms
5,376 KB
testcase_14 AC 53 ms
9,344 KB
testcase_15 AC 34 ms
6,912 KB
testcase_16 AC 70 ms
10,172 KB
testcase_17 AC 65 ms
10,168 KB
testcase_18 AC 48 ms
7,168 KB
testcase_19 AC 69 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;
using ul = unsigned long;
using ull = unsigned long long;

template<class T> inline bool chmax(T& a, T b)
{
	if (a < b)
		a = b;
	return a < b;
}

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);

	ll d, q;
	cin >> d >> q;
	vector<ll> a(q), b(q);
	set<ll> s;
	for (ll i = 0; i < q; ++i)
	{
		cin >> a[i] >> b[i];

		s.insert(a[i] - 1);
		s.insert(a[i]);
		s.insert(b[i]);
		s.insert(b[i] + 1);
	}

	stringstream ss;
	ll maxd{ 0 };
	for (int i = 0; i < q; ++i)
	{
		auto itb = s.lower_bound(a[i]);
		auto ite = s.upper_bound(b[i]);
		ite = s.erase(itb, ite);
		auto it = ite;
		chmax(maxd, *ite - *(--it) - 1);
		ss << maxd << "\n";
	}

	cout << ss.str();

	return 0;
}
0