結果
問題 | No.121 傾向と対策:門松列(その2) |
ユーザー | kyuna |
提出日時 | 2019-07-29 18:33:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,098 ms / 5,000 ms |
コード長 | 1,555 bytes |
コンパイル時間 | 942 ms |
コンパイル使用メモリ | 84,892 KB |
実行使用メモリ | 22,920 KB |
最終ジャッジ日時 | 2024-07-02 15:27:03 |
合計ジャッジ時間 | 6,903 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
5,248 KB |
testcase_01 | AC | 48 ms
5,376 KB |
testcase_02 | AC | 5 ms
5,376 KB |
testcase_03 | AC | 530 ms
11,008 KB |
testcase_04 | AC | 1,098 ms
22,920 KB |
testcase_05 | AC | 535 ms
10,968 KB |
testcase_06 | AC | 459 ms
11,008 KB |
testcase_07 | AC | 515 ms
11,008 KB |
testcase_08 | AC | 575 ms
11,008 KB |
ソースコード
#include <algorithm> #include <iostream> #include <vector> #include <map> using namespace std; template<typename T> int compressed(vector<T> &a) { vector<T> b = a; sort(begin(b), end(b)); b.erase(unique(begin(b), end(b)), end(b)); for (T &ai: a) ai = lower_bound(begin(b), end(b), ai) - begin(b); return b.size(); } template<typename Abel> struct BIT { const Abel UNITY_SUM = 0; vector<Abel> dat; BIT(int n) : dat(n, UNITY_SUM) { } // [0, n) inline void add(int i, Abel x) { while (i < dat.size()) { dat[i] += x; i |= i + 1; } } inline Abel sum(int i) { // [0, i] Abel res = UNITY_SUM; while (i >= 0) { res += dat[i]; i = (i & (i + 1)) - 1; } return res; } inline Abel sum(int a, int b) { return sum(b - 1) - sum(a - 1); } // [a, b) /* debug */ Abel operator[](int i) { return sum(i, i + 1); } void dump() { for (int i = 0; i < dat.size(); ++i) cout << sum(i, i + 1) << ","; cout << endl; } }; int main() { int n; cin >> n; vector<int> a(n); for (int &ai: a) cin >> ai; int sz = compressed(a); BIT<long long> left(sz), right(sz); for (int ai: a) right.add(ai, 1); long long ans = 0, same = 0; for (int ai: a) { ans += left.sum(0, ai) * right.sum(0, ai); ans += left.sum(ai + 1, sz) * right.sum(ai + 1, sz); ans -= same - left[ai] * right[ai]; left.add(ai, 1); same += right[ai]; right.add(ai, -1); same -= left[ai]; } cout << ans << endl; return 0; }