結果
問題 | No.2229 Treasure Searching Rod (Hard) |
ユーザー | みここ |
提出日時 | 2023-02-24 22:10:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 193 ms / 2,000 ms |
コード長 | 3,067 bytes |
コンパイル時間 | 561 ms |
コンパイル使用メモリ | 69,724 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-13 05:34:04 |
合計ジャッジ時間 | 5,491 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 172 ms
6,944 KB |
testcase_08 | AC | 193 ms
6,944 KB |
testcase_09 | AC | 168 ms
6,940 KB |
testcase_10 | AC | 172 ms
6,940 KB |
testcase_11 | AC | 166 ms
6,944 KB |
testcase_12 | AC | 95 ms
6,940 KB |
testcase_13 | AC | 96 ms
6,940 KB |
testcase_14 | AC | 84 ms
6,940 KB |
testcase_15 | AC | 191 ms
6,944 KB |
testcase_16 | AC | 191 ms
6,940 KB |
testcase_17 | AC | 191 ms
6,940 KB |
testcase_18 | AC | 193 ms
6,944 KB |
testcase_19 | AC | 191 ms
6,940 KB |
testcase_20 | AC | 192 ms
6,940 KB |
testcase_21 | AC | 193 ms
6,944 KB |
testcase_22 | AC | 191 ms
6,940 KB |
testcase_23 | AC | 74 ms
6,940 KB |
testcase_24 | AC | 99 ms
6,944 KB |
testcase_25 | AC | 113 ms
6,944 KB |
testcase_26 | AC | 46 ms
6,944 KB |
testcase_27 | AC | 16 ms
6,944 KB |
testcase_28 | AC | 153 ms
6,944 KB |
testcase_29 | AC | 147 ms
6,944 KB |
testcase_30 | AC | 22 ms
6,944 KB |
testcase_31 | AC | 40 ms
6,944 KB |
ソースコード
#include <iostream> using namespace std; template <int MOD> struct static_modint { using mint = static_modint; public: int val; static_modint() : val(0) {} static_modint(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 = static_modint<998244353>; int main() { int h, w, k; cin >> h >> w >> k; mint ans = 0; for (int i = 0; i < k; i++) { long long x, y; mint v; cin >> x >> y >> v; for (int c = 0; c < 2; c++) { if (y >= x) { ans += v * (x * (x + 1) / 2); } else { ans += v * ((x + (x - y + 1)) * y / 2); } y = w + 1 - y; } ans -= v * x; } cout << ans << endl; }