結果
問題 | No.1997 X Lighting |
ユーザー | trineutron |
提出日時 | 2022-07-01 22:42:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,218 bytes |
コンパイル時間 | 2,387 ms |
コンパイル使用メモリ | 211,112 KB |
実行使用メモリ | 9,260 KB |
最終ジャッジ日時 | 2024-05-04 17:04:40 |
合計ジャッジ時間 | 6,426 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 5 ms
5,376 KB |
testcase_06 | AC | 28 ms
5,760 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 6 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 50 ms
6,528 KB |
testcase_14 | RE | - |
testcase_15 | AC | 31 ms
6,272 KB |
testcase_16 | AC | 43 ms
6,640 KB |
testcase_17 | RE | - |
testcase_18 | AC | 53 ms
7,288 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 69 ms
7,456 KB |
testcase_24 | AC | 6 ms
5,376 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | AC | 40 ms
6,200 KB |
testcase_29 | AC | 37 ms
6,252 KB |
testcase_30 | RE | - |
testcase_31 | AC | 85 ms
7,264 KB |
testcase_32 | AC | 25 ms
5,976 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; template <typename T> void compress(vector<T> &a) { auto sorted{a}; sort(sorted.begin(), sorted.end()); sorted.erase(unique(sorted.begin(), sorted.end()), sorted.end()); for (auto &&x : a) { x = lower_bound(sorted.begin(), sorted.end(), x) - sorted.begin(); } } int main() { int64_t n, m; cin >> n >> m; vector<int64_t> l(m), r(m); for (int i = 0; i < m; i++) { int64_t x, y; cin >> x >> y; l.at(i) = x + y; r.at(i) = x - y; } sort(l.begin(), l.end()); l.erase(unique(l.begin(), l.end()), l.end()); sort(r.begin(), r.end()); r.erase(unique(r.begin(), r.end()), r.end()); int64_t ans = 0; for (auto &&x : l) { ans += min(x - 1, 2 * n + 1 - x); } for (auto &&x : r) { ans += min(x + n, n - x); } vector<int64_t> merged0, merged1; int l0 = 0, l1 = 0; for (auto &&x : l) { if (x % 2 == 0) { merged0.emplace_back(x); l0++; } else { merged1.emplace_back(x); l1++; } } for (auto &&x : r) { if (x % 2 == 0) { merged0.emplace_back(2 + abs(x)); merged0.emplace_back(2 * n - abs(x) + 1); } else { merged1.emplace_back(2 + abs(x)); merged1.emplace_back(2 * n - abs(x) + 1); } } compress(merged0); compress(merged1); vector<int64_t> s0(100001), s1(100001); for (int i = 0; i < l0; i++) { s0.at(merged0.at(i) + 1)++; } for (int i = 0; i < l1; i++) { s1.at(merged1.at(i) + 1)++; } for (int i = 0; i < 100000; i++) { s0.at(i + 1) += s0.at(i); s1.at(i + 1) += s1.at(i); } int r0 = (merged0.size() - l0) / 2; int r1 = (merged1.size() - l1) / 2; for (int i = 0; i < r0; i++) { int a = merged0.at(l0 + 2 * i); int b = merged0.at(l0 + 2 * i + 1); ans += s0.at(a) - s0.at(b); } for (int i = 0; i < r1; i++) { int a = merged1.at(l1 + 2 * i); int b = merged1.at(l1 + 2 * i + 1); ans += s1.at(a) - s1.at(b); } cout << ans << endl; return 0; }