結果
問題 | No.1997 X Lighting |
ユーザー | asaringo |
提出日時 | 2022-07-02 17:13:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 177 ms / 2,000 ms |
コード長 | 2,116 bytes |
コンパイル時間 | 2,170 ms |
コンパイル使用メモリ | 215,236 KB |
実行使用メモリ | 18,556 KB |
最終ジャッジ日時 | 2024-05-05 14:17:40 |
合計ジャッジ時間 | 6,475 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 17 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 3 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 | 1 ms
5,376 KB |
testcase_13 | AC | 27 ms
5,376 KB |
testcase_14 | AC | 115 ms
18,556 KB |
testcase_15 | AC | 37 ms
7,388 KB |
testcase_16 | AC | 51 ms
8,832 KB |
testcase_17 | AC | 134 ms
15,592 KB |
testcase_18 | AC | 66 ms
10,240 KB |
testcase_19 | AC | 160 ms
17,748 KB |
testcase_20 | AC | 177 ms
18,448 KB |
testcase_21 | AC | 177 ms
18,488 KB |
testcase_22 | AC | 170 ms
17,868 KB |
testcase_23 | AC | 78 ms
11,264 KB |
testcase_24 | AC | 4 ms
5,376 KB |
testcase_25 | AC | 159 ms
17,956 KB |
testcase_26 | AC | 136 ms
15,784 KB |
testcase_27 | AC | 148 ms
16,004 KB |
testcase_28 | AC | 42 ms
7,680 KB |
testcase_29 | AC | 39 ms
7,552 KB |
testcase_30 | AC | 163 ms
17,552 KB |
testcase_31 | AC | 102 ms
12,924 KB |
testcase_32 | AC | 26 ms
6,016 KB |
ソースコード
#include <bits/stdc++.h> using namespace std ; #define fast_input_output ios::sync_with_stdio(false); cin.tie(nullptr); typedef long long ll ; typedef long double ld ; typedef pair<ll,ll> P ; typedef tuple<ll,ll,ll> TP ; #define chmin(a,b) a = min(a,b) #define chmax(a,b) a = max(a,b) #define bit_count(x) __builtin_popcountll(x) #define gcd(a,b) __gcd(a,b) #define lcm(a,b) a / gcd(a,b) * b #define rep(i,n) for(int i = 0 ; i < n ; i++) #define rrep(i,a,b) for(int i = a ; i < b ; i++) #define endl "\n" ll n , m ; ll X[101010] , Y[101010] ; map<ll,bool> mp_p , mp_n ; vector<ll> odd , eve ; vector<int> vec ; int main(){ fast_input_output cin >> n >> m ; n-- ; ll res = 0 ; rep(i,m) { ll x , y ; cin >> x >> y ; x-- ; y-- ; X[i] = x ; Y[i] = y ; // pos if(!mp_p[y-x]){ res += n - abs(y-x) + 1 ; mp_p[y-x] = true ; if((y+x)%2==0) eve.push_back(y-x) ; if((y+x)%2==1) odd.push_back(y-x) ; } if(!mp_n[y+x]){ vec.push_back(i) ; mp_n[y+x] = true ; } } sort(eve.begin(),eve.end()) ; sort(odd.begin(),odd.end()) ; for(int i : vec){ ll x = X[i] , y = Y[i] ; ll cnt = min(x+y,2*n-x-y) + 1 ; if((x+y)%2==0){ if(x+y<n){ ll sum = upper_bound(eve.begin(),eve.end(),x+y) - lower_bound(eve.begin(),eve.end(),-x-y) ; res += cnt - sum ; } else{ ll sum = upper_bound(eve.begin(),eve.end(),-x-y+2*n) - lower_bound(eve.begin(),eve.end(),x+y-2*n) ; res += cnt - sum ; } } if((x+y)%2==1){ if(x+y<n){ ll sum = upper_bound(odd.begin(),odd.end(),x+y) - lower_bound(odd.begin(),odd.end(),-x-y) ; res += cnt - sum ; } else{ ll sum = upper_bound(odd.begin(),odd.end(),-x-y+2*n) - lower_bound(odd.begin(),odd.end(),x+y-2*n) ; res += cnt - sum ; } } } cout << res << endl ; }