結果
問題 | No.1975 Zigzag Sequence |
ユーザー | magsta |
提出日時 | 2021-08-07 19:06:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,436 bytes |
コンパイル時間 | 1,950 ms |
コンパイル使用メモリ | 184,576 KB |
実行使用メモリ | 22,272 KB |
最終ジャッジ日時 | 2024-09-21 07:14:28 |
合計ジャッジ時間 | 13,747 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; template <typename T> struct SegTree { const T INF = numeric_limits<T>::max(); int n; vector<T> dat; SegTree(int n_) : dat(n_ * 4, 0) { int x = 1; while (n_ > x) { x *= 2; } n = x; } void init(T x) { for (int i = 0; i < 2 * n - 1; i++) dat[i] = x; } void add(int i, T x) { i += n - 1; dat[i] += x; while (i > 0) { i = (i - 1) / 2; dat[i] = dat[i * 2 + 1] + dat[i * 2 + 2]; } } T query(int a, int b) { return query_sub(a, b, 0, 0, n); } T query_sub(int a, int b, int k, int l, int r) { if (r <= a || b <= l) { return 0; } else if (a <= l && r <= b) { return dat[k]; } else { T vl = query_sub(a, b, k * 2 + 1, l, (l + r) / 2); T vr = query_sub(a, b, k * 2 + 2, (l + r) / 2, r); return vl + vr; } } }; #define MOD 1000000007 long long modpow(long long a, long long n, long long mod) { long long res = 1; while (n > 0) { if (n & 1) res = res * a % mod; a = a * a % mod; n >>= 1; } return res; } int main() { long long N; cin >> N; vector<long long> A(N); for (int i = 0; i < N; i++) cin >> A[i]; set<long long> Set; for (int i = 0; i < N; i++) { Set.insert(A[i]); } long long count = 0; map<long long, long long> Map; while (!Set.empty()) { long long a = *Set.begin(); Set.erase(Set.begin()); Map[a] = count; count++; } vector<long long> A_(N); for (int i = 0; i < N; i++) A_[i] = Map[A[i]]; vector<long long> dp(N), dp2(N), dp3(N), dp4(N); SegTree<long long> Seg1(count + 10); for (int i = 0; i < N; i++) { dp[i] = Seg1.query(0, A_[i]) % MOD; dp2[i] = Seg1.query(A[i] + 1, count + 5) % MOD; Seg1.add(A_[i], modpow(2, i, MOD)); } SegTree<long long> Seg2(count + 10); for (int i = N - 1; i >= 0; i++) { dp3[i] = Seg2.query(0, A_[i]) % MOD; dp4[i] = Seg2.query(A[i] + 1, count + 5) % MOD; Seg2.add(A_[i], modpow(2, N - i - 1, MOD)); } long long ans = 0; for (int i = 0; i < N; i++) { ans += dp[i] * dp3[i] % MOD; ans += dp2[i] * dp4[i] % MOD; } cout << ans % MOD << endl; }