結果
問題 | No.1268 Fruit Rush 2 |
ユーザー | hanyu |
提出日時 | 2020-09-20 00:36:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,386 bytes |
コンパイル時間 | 1,858 ms |
コンパイル使用メモリ | 177,484 KB |
実行使用メモリ | 13,760 KB |
最終ジャッジ日時 | 2024-06-23 22:51:26 |
合計ジャッジ時間 | 6,650 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,760 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,944 KB |
testcase_16 | AC | 32 ms
6,940 KB |
testcase_17 | AC | 29 ms
6,940 KB |
testcase_18 | AC | 31 ms
6,940 KB |
testcase_19 | AC | 30 ms
6,944 KB |
testcase_20 | AC | 29 ms
6,940 KB |
testcase_21 | AC | 28 ms
6,944 KB |
testcase_22 | AC | 32 ms
6,940 KB |
testcase_23 | AC | 32 ms
6,940 KB |
testcase_24 | AC | 29 ms
6,944 KB |
testcase_25 | AC | 29 ms
6,940 KB |
testcase_26 | AC | 46 ms
6,940 KB |
testcase_27 | AC | 46 ms
6,944 KB |
testcase_28 | AC | 46 ms
6,940 KB |
testcase_29 | AC | 46 ms
6,940 KB |
testcase_30 | AC | 47 ms
6,940 KB |
testcase_31 | TLE | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
// O(N^2)解法 #include <bits/stdc++.h> using namespace std; #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") using ll = long long; int main() { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; vector<ll> odd, even; for (int i = 0; i < n; i++) { ll a; cin >> a; if (a % 2 == 1) odd.emplace_back(a); else even.emplace_back(a); } sort(odd.begin(), odd.end()); sort(even.begin(), even.end()); // sentinel odd.emplace_back(2e18 - 1); even.emplace_back(2e18); ll ans = n; int even_it = 0; for (int i = 0; i < odd.size() - 1; i++) { while (even.at(even_it) <= odd.at(i)) even_it++; if (even.at(even_it) == odd.at(i) + 1) { ll keep = 1, it2 = even_it; while (true) { if (even.at(it2) + 2 == even.at(it2 + 1)) { keep++; it2++; } else { break; } } ans += keep; } } int odd_it = 0; for (int i = 0; i < even.size() - 1; i++) { while (odd.at(odd_it) <= even.at(i)) odd_it++; if (odd.at(odd_it) == even.at(i) + 1) { ll keep = 1, it2 = odd_it; while (true) { if (odd.at(it2) + 2 == odd.at(it2 + 1)) { keep++; it2++; } else { break; } } ans += keep; } } cout << ans << '\n'; }