結果

問題 No.1997 X Lighting
ユーザー MasKoaTSMasKoaTS
提出日時 2024-12-01 20:53:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 995 bytes
コンパイル時間 2,628 ms
コンパイル使用メモリ 218,968 KB
実行使用メモリ 14,636 KB
最終ジャッジ日時 2024-12-01 20:53:41
合計ジャッジ時間 6,149 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 5 ms
5,248 KB
testcase_06 AC 27 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 49 ms
5,248 KB
testcase_14 AC 154 ms
14,636 KB
testcase_15 AC 39 ms
6,472 KB
testcase_16 AC 52 ms
7,552 KB
testcase_17 AC 131 ms
12,660 KB
testcase_18 AC 67 ms
8,576 KB
testcase_19 AC 162 ms
14,072 KB
testcase_20 AC 216 ms
14,636 KB
testcase_21 AC 181 ms
14,508 KB
testcase_22 AC 151 ms
14,120 KB
testcase_23 AC 91 ms
9,216 KB
testcase_24 AC 5 ms
5,248 KB
testcase_25 AC 178 ms
14,156 KB
testcase_26 AC 149 ms
12,840 KB
testcase_27 AC 149 ms
13,000 KB
testcase_28 AC 48 ms
6,528 KB
testcase_29 AC 47 ms
6,376 KB
testcase_30 AC 219 ms
14,040 KB
testcase_31 AC 111 ms
10,368 KB
testcase_32 AC 30 ms
5,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define itrep(itr, st) for(auto itr = st.begin(); itr != st.end(); itr++)
using namespace std;
using ll = long long;


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

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

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

	vector<ll> yvec = {};
	itrep(itr, yst) {
		yvec.push_back(abs(*itr));
	}
	sort(yvec.begin(), yvec.end());
	for(auto y : yvec){
		ll lv = y, rv = 2 * (n - 1) - y;
		int b = y & 1;
		ans += min(n - 1 + y, n - 1) - max(y, 0ll) + 1;
		while (!que[b].empty() && que[b].back() > rv) {
			que[b].pop_back();
		}
		while (!que[b].empty() && que[b].front() < lv) {
			que[b].pop_front();
		}
		ans -= que[b].size();
	}
    cout << ans << endl;

    return 0;
}
0