結果

問題 No.1997 X Lighting
ユーザー 沙耶花沙耶花
提出日時 2022-07-01 21:41:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 2,423 ms
コンパイル使用メモリ 208,784 KB
実行使用メモリ 13,804 KB
最終ジャッジ日時 2024-05-04 15:59:02
合計ジャッジ時間 8,390 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 2 ms
5,376 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 32 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 3 ms
5,376 KB
testcase_13 AC 53 ms
5,376 KB
testcase_14 AC 195 ms
13,804 KB
testcase_15 AC 51 ms
6,208 KB
testcase_16 AC 74 ms
7,168 KB
testcase_17 AC 203 ms
11,860 KB
testcase_18 AC 102 ms
8,064 KB
testcase_19 AC 251 ms
13,156 KB
testcase_20 AC 295 ms
13,800 KB
testcase_21 AC 301 ms
13,804 KB
testcase_22 AC 253 ms
13,256 KB
testcase_23 AC 137 ms
8,704 KB
testcase_24 AC 6 ms
5,376 KB
testcase_25 AC 283 ms
13,332 KB
testcase_26 AC 231 ms
11,980 KB
testcase_27 AC 229 ms
12,168 KB
testcase_28 AC 60 ms
6,528 KB
testcase_29 AC 59 ms
6,528 KB
testcase_30 AC 269 ms
13,164 KB
testcase_31 AC 170 ms
9,856 KB
testcase_32 AC 33 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