結果

問題 No.1997 X Lighting
ユーザー MasKoaTSMasKoaTS
提出日時 2022-03-27 20:37:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 546 ms / 2,000 ms
コード長 1,518 bytes
コンパイル時間 1,281 ms
コンパイル使用メモリ 92,796 KB
実行使用メモリ 20,196 KB
最終ジャッジ日時 2024-11-17 03:20:32
合計ジャッジ時間 8,430 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 7 ms
5,248 KB
testcase_06 AC 43 ms
6,528 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 74 ms
8,832 KB
testcase_14 AC 280 ms
20,136 KB
testcase_15 AC 85 ms
7,936 KB
testcase_16 AC 126 ms
9,472 KB
testcase_17 AC 390 ms
17,392 KB
testcase_18 AC 174 ms
11,136 KB
testcase_19 AC 490 ms
19,480 KB
testcase_20 AC 544 ms
20,052 KB
testcase_21 AC 546 ms
20,196 KB
testcase_22 AC 484 ms
19,832 KB
testcase_23 AC 230 ms
12,032 KB
testcase_24 AC 8 ms
5,248 KB
testcase_25 AC 512 ms
19,364 KB
testcase_26 AC 417 ms
17,228 KB
testcase_27 AC 432 ms
17,540 KB
testcase_28 AC 99 ms
8,064 KB
testcase_29 AC 93 ms
7,936 KB
testcase_30 AC 500 ms
19,184 KB
testcase_31 AC 294 ms
14,080 KB
testcase_32 AC 56 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
#include <algorithm>
#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>;
template <class T>
using VV = V<V<T> >;


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

	VV<ll> p(m, V<ll>(2));
	set<ll> st1 = {}, st2 = {};
	rep(i, 0, m) {
		ll x, y;	cin >> x >> y;
		x--;	y--;
		p[i][0] = x - y;
		p[i][1] = x + y;
		st1.insert(p[i][0]);
		st2.insert(p[i][1]);
	}
	
	VV<ll> naname1(2, V<ll>({}));
	VV<ll> naname2(2, V<ll>({}));
	itrep(itr, st1) {
		ll x = *itr;
		naname1[abs(x) & 1].push_back(x);
	}
	itrep(itr, st2) {
		ll y = *itr;
		naname2[y & 1].push_back(y);
	}

	ll num = 0, dc = 0;
	st1 = {};	st2 = {};
	rep(i, 0, m) {
		ll x = p[i][0], y = p[i][1];
		int b = y & 1;
		if (st1.find(x) == st1.end()) {
			num += min(n - 1 + x, n - 1) - max(x, (ll)0) + 1;
			auto itr1 = lower_bound(all(naname2[b]), max(x, -x));
			auto itr2 = upper_bound(all(naname2[b]), min(2 * (n - 1) - x, 2 * (n - 1) + x));
			dc += itr2 - itr1;
			st1.insert(x);
		}
		if (st2.find(y) == st2.end()) {
			num += min(y, n - 1) - max(-n + 1 + y, (ll)0) + 1;
			auto itr1 = lower_bound(all(naname1[b]), max(-y, y - 2 * (n - 1)));
			auto itr2 = upper_bound(all(naname1[b]), min(2 * (n - 1) - y, y));
			dc += itr2 - itr1;
			st2.insert(y);
		}
	}

	ll ans = num - dc / 2;
	cout << ans << endl;

	return 0;
}
0