結果
問題 | No.2475 Distance Permutation |
ユーザー | nok0 |
提出日時 | 2023-09-09 00:51:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,226 bytes |
コンパイル時間 | 13,364 ms |
コンパイル使用メモリ | 333,540 KB |
実行使用メモリ | 30,532 KB |
最終ジャッジ日時 | 2024-06-26 18:08:56 |
合計ジャッジ時間 | 44,976 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
7,700 KB |
testcase_01 | AC | 22 ms
7,572 KB |
testcase_02 | AC | 2,079 ms
23,080 KB |
testcase_03 | AC | 2,097 ms
24,080 KB |
testcase_04 | AC | 2,080 ms
22,932 KB |
testcase_05 | AC | 2,098 ms
24,012 KB |
testcase_06 | AC | 2,112 ms
23,444 KB |
testcase_07 | AC | 2,119 ms
23,372 KB |
testcase_08 | AC | 2,129 ms
23,564 KB |
testcase_09 | AC | 2,121 ms
24,000 KB |
testcase_10 | AC | 2,110 ms
23,876 KB |
testcase_11 | AC | 2,068 ms
22,960 KB |
testcase_12 | AC | 2,083 ms
23,584 KB |
testcase_13 | AC | 132 ms
23,316 KB |
testcase_14 | AC | 131 ms
24,256 KB |
testcase_15 | AC | 135 ms
23,068 KB |
testcase_16 | AC | 134 ms
23,148 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <atcoder/all> #include <cmath> #include <cstdint> #include <iostream> #include <map> #include <limits> #include "testlib.h" using namespace std; using namespace atcoder; using mint = modint998244353; using i32 = int32_t; using u64 = uint64_t; #define REP(i, s, t) for (i32 i = (s); i < (t); ++i) #define PER(i, s, t) for (i32 i = (t)-1; i >= (s); --i) vector<mint> fact, ifact, inv; const i32 m = 100000; void init(void) { fact.resize(m + 1, 1); ifact.resize(m + 1, 1); inv.resize(m + 1, 1); REP(i, 1, m + 1) fact.at(i) = i * fact.at(i - 1); ifact.at(m) = fact.at(m).inv(); PER(i, 1, m) { inv.at(i + 1) = ifact.at(i + 1) * fact.at(i); ifact.at(i) = ifact.at(i + 1) * (i + 1); } } int main(int argc, char **argv) { cin.tie(nullptr); ios::sync_with_stdio(false); registerValidation(argc, argv); init(); const i32 k = inf.readInt(1, m); inf.readSpace(); const i32 q = inf.readInt(1, m * 2); inf.readEoln(); vector<mint> dp(m + 1); dp[0] = 1; mint sum = 1; REP(i, 1, m + 1) { if (i > k) sum -= dp[i - k - 1]; dp[i] = sum * inv[i]; sum += dp[i]; } const auto ep = convolution(dp, dp); REP(i, 0, q) { const i32 n = inf.readInt(1, m); inf.readSpace(); const i32 l = inf.readInt(1, n); inf.readSpace(); const i32 r = inf.readInt(l, n); inf.readEoln(); __int128_t sum = 0; const i32 len = r - l + 1; if (len <= n - 1 - len) { REP(i, l, r + 1) { sum += (u64)dp[i - 1].val() * dp[n - i].val(); } } else { sum = ep[n - 1].val(); REP(i, 1, l) { sum += (u64)998244353 * 998244353 - (u64)dp[i - 1].val() * dp[n - i].val(); } REP(i, r + 1, n + 1) { sum += (u64)998244353 * 998244353 - (u64)dp[i - 1].val() * dp[n - i].val(); } } sum %= 998244353; mint ans = sum; ans *= fact[n - 1]; cout << ans.val() << "\n"; } inf.readEof(); return 0; }