結果
問題 | No.1079 まお |
ユーザー |
|
提出日時 | 2020-06-13 17:30:00 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,524 bytes |
コンパイル時間 | 2,063 ms |
コンパイル使用メモリ | 203,132 KB |
最終ジャッジ日時 | 2025-01-11 03:49:39 |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 4 WA * 26 |
ソースコード
#include <bits/stdc++.h> // clang-format off using Int = long long; #define REP_(i, a_, b_, a, b, ...) for (Int i = (a), lim##i = (b); i < lim##i; i++) #define REP(i, ...) REP_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__) struct SetupIO { SetupIO() { std::cin.tie(nullptr), std::ios::sync_with_stdio(false), std::cout << std::fixed << std::setprecision(13); } } setup_io; #ifndef dump #define dump(...) #endif // clang-format on /** * author: knshnb * created: Sat Jun 13 17:03:51 JST 2020 **/ signed main() { Int n, K; std::cin >> n >> K; std::vector<Int> a(n); REP(i, n) std::cin >> a[i]; auto daq = [&](auto self, Int L, Int R) -> Int { if (R - L == 1) return 2 * a[L] == K; Int ret = self(self, L, (L + R) / 2) + self(self, (L + R) / 2, R); REP(t, 2) { Int M = (L + R + t) / 2; Int j = M; Int mi = 1e18; std::unordered_map<Int, std::pair<Int, Int>> mp; // {cnt, sum of index} for (Int i = M - 1; i >= L; i--) { if (a[i] == mi) continue; mi = std::min(mi, a[i]); while (j <= M && a[j] > mi) { mp[a[j]].first++; mp[a[j]].second += j - M + 1; j++; } ret += mp[K - a[i]].first * (M - i) + mp[K - a[i]].second; } std::reverse(a.begin() + L, a.begin() + R); } return ret; }; std::cout << daq(daq, 0, n) << std::endl; }