結果
問題 | No.2055 12x34... |
ユーザー | KKT89 |
提出日時 | 2024-01-29 10:06:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 250 ms / 2,000 ms |
コード長 | 3,393 bytes |
コンパイル時間 | 2,659 ms |
コンパイル使用メモリ | 225,952 KB |
実行使用メモリ | 30,976 KB |
最終ジャッジ日時 | 2024-09-28 10:00:54 |
合計ジャッジ時間 | 9,619 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 18 ms
11,460 KB |
testcase_01 | AC | 17 ms
11,520 KB |
testcase_02 | AC | 21 ms
11,648 KB |
testcase_03 | AC | 28 ms
11,828 KB |
testcase_04 | AC | 32 ms
12,032 KB |
testcase_05 | AC | 34 ms
11,904 KB |
testcase_06 | AC | 32 ms
11,904 KB |
testcase_07 | AC | 29 ms
11,904 KB |
testcase_08 | AC | 26 ms
11,776 KB |
testcase_09 | AC | 37 ms
12,100 KB |
testcase_10 | AC | 38 ms
12,160 KB |
testcase_11 | AC | 25 ms
11,736 KB |
testcase_12 | AC | 130 ms
21,504 KB |
testcase_13 | AC | 231 ms
28,016 KB |
testcase_14 | AC | 89 ms
18,304 KB |
testcase_15 | AC | 88 ms
18,304 KB |
testcase_16 | AC | 250 ms
28,672 KB |
testcase_17 | AC | 81 ms
14,336 KB |
testcase_18 | AC | 150 ms
16,768 KB |
testcase_19 | AC | 36 ms
12,672 KB |
testcase_20 | AC | 23 ms
11,904 KB |
testcase_21 | AC | 38 ms
12,656 KB |
testcase_22 | AC | 196 ms
18,432 KB |
testcase_23 | AC | 204 ms
24,132 KB |
testcase_24 | AC | 142 ms
29,952 KB |
testcase_25 | AC | 198 ms
26,112 KB |
testcase_26 | AC | 177 ms
26,496 KB |
testcase_27 | AC | 145 ms
30,976 KB |
testcase_28 | AC | 160 ms
27,776 KB |
testcase_29 | AC | 214 ms
29,628 KB |
testcase_30 | AC | 189 ms
26,328 KB |
testcase_31 | AC | 174 ms
26,112 KB |
testcase_32 | AC | 166 ms
27,088 KB |
testcase_33 | AC | 100 ms
12,272 KB |
testcase_34 | AC | 102 ms
12,160 KB |
testcase_35 | AC | 101 ms
12,416 KB |
testcase_36 | AC | 98 ms
12,288 KB |
testcase_37 | AC | 102 ms
12,416 KB |
testcase_38 | AC | 100 ms
12,288 KB |
testcase_39 | AC | 101 ms
12,288 KB |
testcase_40 | AC | 102 ms
12,416 KB |
testcase_41 | AC | 99 ms
12,288 KB |
testcase_42 | AC | 98 ms
12,288 KB |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef unsigned long long int ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } template <int mod> struct static_modint { using mint = static_modint; int x; static_modint() : x(0) {} static_modint(int64_t y) : x(y >= 0 ? y % mod : (mod - (-y) % mod) % mod) {} mint &operator+=(const mint &rhs) { if ((x += rhs.x) >= mod) x -= mod; return *this; } mint &operator-=(const mint &rhs) { if ((x += mod - rhs.x) >= mod) x -= mod; return *this; } mint &operator*=(const mint &rhs) { x = (int)(1LL * x * rhs.x % mod); return *this; } mint &operator/=(const mint &rhs) { return *this = *this * rhs.inv(); } mint pow(long long n) const { mint _x = *this, r = 1; while (n) { if (n & 1) r *= _x; _x *= _x; n >>= 1; } return r; } mint inv() const { return pow(mod - 2); } mint operator+() const { return *this; } mint operator-() const { return mint() - *this; } friend mint operator+(const mint &lhs, const mint &rhs) { return mint(lhs) += rhs; } friend mint operator-(const mint &lhs, const mint &rhs) { return mint(lhs) -= rhs; } friend mint operator*(const mint &lhs, const mint &rhs) { return mint(lhs) *= rhs; } friend mint operator/(const mint &lhs, const mint &rhs) { return mint(lhs) /= rhs; } friend bool operator==(const mint &lhs, const mint &rhs) { return lhs.x == rhs.x; } friend bool operator!=(const mint &lhs, const mint &rhs) { return lhs.x != rhs.x; } friend ostream &operator<<(ostream &os, const mint &p) { return os << p.x; } friend istream &operator>>(istream &is, mint &a) { int64_t t; is >> t; a = static_modint<mod>(t); return (is); } }; const unsigned int mod = 998244353; using modint = static_modint<mod>; modint mod_pow(ll n, ll x) { return modint(n).pow(x); } modint mod_pow(modint n, ll x) { return n.pow(x); } template <typename T> struct Comination { vector<T> p, invp; Comination(int sz) : p(sz + 1), invp(sz + 1) { p[0] = 1; for (int i = 1; i <= sz; ++i) { p[i] = p[i - 1] * i; } invp[sz] = p[sz].inv(); for (int i = sz - 1; i >= 0; --i) { invp[i] = invp[i + 1] * (i + 1); } } T comb(int n, int r) { if (r < 0 or n < r) return 0; return p[n] * invp[n - r] * invp[r]; } T big_comb(T n, int r) { T res = invp[r]; for (int i = 0; i < r; ++i) { res *= (n - i); } return res; } }; using Comb = Comination<modint>; Comb p(1 << 20); int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; vector<int> a(n); for (int i = 0; i < n; i++) { cin >> a[i]; } map<int, modint> mp, dp; modint res = 0; for (int i = 0; i < n; i++) { { modint add = 0; if (mp.find(a[i] - 1) != mp.end()) add += mp[a[i] - 1]; if (dp.find(a[i] - 1) != dp.end()) add += dp[a[i] - 1]; res += add; dp[a[i]] += add; } mp[a[i]] += 1; } cout << res << endl; }