結果
問題 | No.2568 列辞書順列列 |
ユーザー | nonon |
提出日時 | 2024-09-10 08:08:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 179 ms / 3,000 ms |
コード長 | 776 bytes |
コンパイル時間 | 2,392 ms |
コンパイル使用メモリ | 208,832 KB |
実行使用メモリ | 8,948 KB |
最終ジャッジ日時 | 2024-09-10 08:08:24 |
合計ジャッジ時間 | 9,363 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 21 ms
6,816 KB |
testcase_03 | AC | 21 ms
6,948 KB |
testcase_04 | AC | 93 ms
8,832 KB |
testcase_05 | AC | 92 ms
8,892 KB |
testcase_06 | AC | 93 ms
8,804 KB |
testcase_07 | AC | 119 ms
8,864 KB |
testcase_08 | AC | 93 ms
8,804 KB |
testcase_09 | AC | 88 ms
8,740 KB |
testcase_10 | AC | 89 ms
8,736 KB |
testcase_11 | AC | 90 ms
8,948 KB |
testcase_12 | AC | 143 ms
8,848 KB |
testcase_13 | AC | 143 ms
8,736 KB |
testcase_14 | AC | 142 ms
8,916 KB |
testcase_15 | AC | 169 ms
8,744 KB |
testcase_16 | AC | 140 ms
8,888 KB |
testcase_17 | AC | 152 ms
8,840 KB |
testcase_18 | AC | 153 ms
8,912 KB |
testcase_19 | AC | 153 ms
8,872 KB |
testcase_20 | AC | 153 ms
8,916 KB |
testcase_21 | AC | 179 ms
8,860 KB |
testcase_22 | AC | 152 ms
8,880 KB |
testcase_23 | AC | 152 ms
8,860 KB |
testcase_24 | AC | 153 ms
8,884 KB |
testcase_25 | AC | 153 ms
8,936 KB |
testcase_26 | AC | 152 ms
8,876 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/modint> #include<atcoder/segtree> using namespace std; using mint=atcoder::modint998244353; int N,M,Q; pair<mint,int>op(pair<mint,int>a, pair<mint,int>b) { mint val=a.first*mint(M).pow(b.second)+b.first; int size=a.second+b.second; return make_pair(val,size); } pair<mint,int>e(){return make_pair(mint(),0);} int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin>>N>>M>>Q; vector<pair<mint,int>>V(N); for(int i=0;i<N;i++) { int A; cin>>A; V[i]=make_pair(A-1,1); } atcoder::segtree<pair<mint,int>,op,e>seg(V); while(Q--) { int L,R; cin>>L>>R; L--; mint ans=seg.prod(L,R).first+1; cout<<ans.val()<<'\n'; } }