結果

問題 No.1997 X Lighting
ユーザー MasKoaTSMasKoaTS
提出日時 2022-04-23 15:55:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 1,133 bytes
コンパイル時間 1,266 ms
コンパイル使用メモリ 99,304 KB
実行使用メモリ 14,636 KB
最終ジャッジ日時 2024-06-25 03:00:19
合計ジャッジ時間 5,289 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 31 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 53 ms
5,376 KB
testcase_14 AC 174 ms
14,512 KB
testcase_15 AC 42 ms
6,432 KB
testcase_16 AC 59 ms
7,424 KB
testcase_17 AC 165 ms
12,660 KB
testcase_18 AC 78 ms
8,576 KB
testcase_19 AC 205 ms
14,072 KB
testcase_20 AC 255 ms
14,636 KB
testcase_21 AC 252 ms
14,632 KB
testcase_22 AC 209 ms
14,124 KB
testcase_23 AC 110 ms
9,216 KB
testcase_24 AC 5 ms
5,376 KB
testcase_25 AC 244 ms
14,260 KB
testcase_26 AC 200 ms
12,792 KB
testcase_27 AC 200 ms
13,000 KB
testcase_28 AC 54 ms
6,612 KB
testcase_29 AC 51 ms
6,500 KB
testcase_30 AC 230 ms
14,044 KB
testcase_31 AC 139 ms
10,368 KB
testcase_32 AC 32 ms
5,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
#include <algorithm>
#include <queue>
#define rep(i, l, n) for (int i = (l); i < (n); i++)
#define itrep(itr, st) for(auto itr = st.begin(); itr != st.end(); itr++)
#define all(x) x.begin(), x.end()
using namespace std;
using ll = long long;
template <class T>
using V = vector<T>;


int main(void) {
	ll n, m;	cin >> n >> m;

	set<ll> xst = {}, yst = {};
	rep(i, 0, m) {
		ll X, Y;	cin >> X >> Y;
		xst.insert((X - 1) + (Y - 1));
		yst.insert((X - 1) - (Y - 1));
	}

	ll ans = 0;
	V<deque<ll> > que(2, deque<ll>({}));
	itrep(itr, xst) {
		ll x = *itr;
		ans += min(x, n - 1) - max(-n + 1 + x, 0ll) + 1;
		que[x & 1].push_back(x);
	}

	V<ll> yv = {};
	itrep(itr, yst) {
		yv.push_back(abs(*itr));
	}
	sort(all(yv));
	for (auto y : yv) {
		ll lv = y, rv = 2 * (n - 1) - y;
		int b = abs(y) & 1;
		ans += min(n - 1 + y, n - 1) - max(y, 0ll) + 1;
		while (que[b].empty() == false and que[b].back() > rv) {
			que[b].pop_back();
		}
		while (que[b].empty() == false and que[b].front() < lv) {
			que[b].pop_front();
		}
		ans -= que[b].size();
	}

	cout << ans << endl;

	return 0;
}
0