結果
問題 | No.2250 Split Permutation |
ユーザー | みここ |
提出日時 | 2023-03-17 22:19:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 151 ms / 3,000 ms |
コード長 | 3,070 bytes |
コンパイル時間 | 844 ms |
コンパイル使用メモリ | 76,476 KB |
実行使用メモリ | 6,528 KB |
最終ジャッジ日時 | 2024-09-18 11:25:03 |
合計ジャッジ時間 | 3,542 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 148 ms
6,400 KB |
testcase_19 | AC | 133 ms
6,144 KB |
testcase_20 | AC | 114 ms
5,760 KB |
testcase_21 | AC | 71 ms
5,376 KB |
testcase_22 | AC | 104 ms
5,504 KB |
testcase_23 | AC | 21 ms
5,376 KB |
testcase_24 | AC | 105 ms
5,504 KB |
testcase_25 | AC | 151 ms
6,400 KB |
testcase_26 | AC | 52 ms
5,376 KB |
testcase_27 | AC | 14 ms
5,376 KB |
testcase_28 | AC | 27 ms
5,376 KB |
testcase_29 | AC | 150 ms
6,528 KB |
testcase_30 | AC | 28 ms
5,376 KB |
testcase_31 | AC | 8 ms
5,376 KB |
testcase_32 | AC | 36 ms
5,376 KB |
testcase_33 | AC | 82 ms
5,376 KB |
testcase_34 | AC | 21 ms
5,376 KB |
testcase_35 | AC | 57 ms
5,376 KB |
testcase_36 | AC | 35 ms
5,376 KB |
testcase_37 | AC | 150 ms
6,400 KB |
ソースコード
#include <iostream> #include <atcoder/fenwicktree> using namespace std; using namespace atcoder; template <int MOD> struct StaticModint { using mint = StaticModint; public: int val; StaticModint() : val(0) {} StaticModint(long long v) { if (std::abs(v) >= mod()) { v %= mod(); } if (v < 0) { v += mod(); } val = v; } mint &operator++() { val++; if (val == mod()) { val = 0; } return *this; } mint &operator--() { if (val == 0) { val = mod(); } val--; return *this; } mint &operator+=(const mint &x) { val += x.val; if (val >= mod()) { val -= mod(); } return *this; } mint &operator-=(const mint &x) { val -= x.val; if (val < 0) { val += mod(); } return *this; } mint &operator*=(const mint &x) { val = (int)((long long)val * x.val % mod()); return *this; } mint &operator/=(const mint &x) { *this *= x.inv(); return *this; } mint operator-() { return mint() - *this; } mint pow(long long n) const { mint x = 1, r = *this; while (n) { if (n & 1) { x *= r; } r *= r; n >>= 1; } return x; } mint inv() const { return pow(mod() - 2); } friend mint operator+(const mint &x, const mint &y) { return mint(x) += y; } friend mint operator-(const mint &x, const mint &y) { return mint(x) -= y; } friend mint operator*(const mint &x, const mint &y) { return mint(x) *= y; } friend mint operator/(const mint &x, const mint &y) { return mint(x) /= y; } friend bool operator==(const mint &x, const mint &y) { return x.val == y.val; } friend bool operator!=(const mint &x, const mint &y) { return x.val != y.val; } friend std::ostream &operator<<(std::ostream &os, const mint &x) { return os << x.val; } friend std::istream &operator>>(std::istream &is, mint &x) { long long v; is >> v; x = mint(v); return is; } private: static constexpr int mod() { return MOD; } }; using mint = StaticModint<998244353>; int main() { int n; cin >> n; int p[200005], q[200005]; for(int i = 0; i < n; i++) { cin >> p[i]; p[i]--; q[p[i]] = i; } mint ans = 0; fenwick_tree<mint> bit0(n), bit1(n); for(int i = 0; i < n; i++) { ans += bit0.sum(q[i], n) - bit1.sum(q[i], n) * mint(2).pow(q[i]); bit0.add(q[i], mint(2).pow(n - 1)); bit1.add(q[i], mint(2).pow(n - 1 - q[i])); } cout << ans << endl; }