結果

問題 No.1997 X Lighting
ユーザー 沙耶花沙耶花
提出日時 2022-07-01 21:41:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 208,764 KB
実行使用メモリ 13,804 KB
最終ジャッジ日時 2024-11-26 04:25:44
合計ジャッジ時間 6,837 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 5 ms
5,248 KB
testcase_06 AC 29 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 50 ms
5,248 KB
testcase_14 AC 178 ms
13,800 KB
testcase_15 AC 39 ms
6,080 KB
testcase_16 AC 53 ms
7,168 KB
testcase_17 AC 138 ms
11,864 KB
testcase_18 AC 70 ms
8,192 KB
testcase_19 AC 171 ms
13,164 KB
testcase_20 AC 216 ms
13,800 KB
testcase_21 AC 217 ms
13,804 KB
testcase_22 AC 183 ms
13,208 KB
testcase_23 AC 98 ms
8,704 KB
testcase_24 AC 5 ms
5,248 KB
testcase_25 AC 210 ms
13,336 KB
testcase_26 AC 169 ms
11,984 KB
testcase_27 AC 172 ms
12,168 KB
testcase_28 AC 50 ms
6,400 KB
testcase_29 AC 48 ms
6,400 KB
testcase_30 AC 199 ms
13,132 KB
testcase_31 AC 121 ms
9,856 KB
testcase_32 AC 32 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
	
	long long L,N;
	cin>>L>>N;

	set<long long> S1[2];
	set<long long> S2[2];
	long long x,y;
	for(long long i=0;i<N;i++){
		cin>>x>>y;
		x--,y--;
		S1[abs((y-x))%2].insert(y-x);
		S2[(x+y)%2].insert(x+y);
	}
	vector<long long> V[2];
	long long ans = 0;
	for(long long i=0;i<2;i++){
		for(auto a:S1[i]){
			ans+=(long long)L-abs(a);
			V[i].push_back(a);
		}
		for(auto a:S2[i]){
			long long x = L-abs((L-1)-a);
			ans+=(long long)x;
			ans-=upper_bound(V[i].begin(),V[i].end(),x-1)-lower_bound(V[i].begin(),V[i].end(),-(x-1));
		}
	}
	cout<<ans<<endl;
	
	return 0;
}
0