結果
問題 | No.1712 Read and Pile |
ユーザー | chineristAC |
提出日時 | 2021-05-03 17:56:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,578 bytes |
コンパイル時間 | 9,930 ms |
コンパイル使用メモリ | 312,032 KB |
実行使用メモリ | 14,932 KB |
最終ジャッジ日時 | 2024-09-17 16:52:54 |
合計ジャッジ時間 | 10,374 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | AC | 73 ms
14,192 KB |
testcase_36 | AC | 78 ms
14,932 KB |
testcase_37 | AC | 73 ms
14,124 KB |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
ソースコード
#include <iostream> #include <vector> #include <string> #include <map> #include <set> #include <queue> #include <algorithm> #include <cmath> #include <iomanip> #include <random> #include <stdio.h> #include <fstream> #include <functional> #include <atcoder/all> #include "testlib.h" using namespace std; using namespace atcoder; #define rep(i,n,c) for (int i=0;i<n;i+=c) #define append push_back #define all(x) (x).begin(), (x).end() template<class T> using vec = vector<T>; template<class T> using vvec = vec<vec<T>>; template<class T> using vvvec = vec<vvec<T>>; using ll = long long; using pii = pair<int,int>; using pll = pair<ll,ll>; template<class T> bool chmin(T &a, T b){ if (a>b){ a = b; return true; } return false; } template<class T> bool chmax(T &a, T b){ if (a<b){ a = b; return true; } return false; } template<class T> T sum(vec<T> x){ T res=0; for (auto e:x){ res += e; } return res; } template<class T> void printv(vec<T> x){ for (auto e:x){ cout<<e<<" "; } cout<<"\n"; } const ll INF = 1e17; const int MIN_N = 1; const int MAX_N = 200000; const int MIN_M = 1; const int MAX_M = 200000; using mint = modint998244353; int main(int argc, char* argv[]){ registerValidation(argc,argv); ios::sync_with_stdio(false); std::cin.tie(nullptr); int N = inf.readInt(MIN_N,MAX_N,"N"); inf.readSpace(); int M = inf.readInt(MIN_M,MAX_M,"M"); inf.readEoln(); mint p = (N-2) * ((mint)(N)).inv(); mint ip = p.inv(); vec<int> A(N+M+1); for (int i=1;i<N+1;i++){ A[i] = N-i+1; } A[0] = -1; for (int i=N+1;i<N+M+1;i++){ A[i] = inf.readInt(0,N); if (i!=N+M){ inf.readSpace(); } else{ inf.readEoln(); } } inf.readEof(); vec<int> zero(N+M+1); rep(i,N+M+1,1){ if (A[i]==0){ zero[i] = 1; } if (i){ zero[i] += zero[i-1]; } } vec<int> last(N+1); rep(i,N+1,1){ last[i] = N-i+1; } fenwick_tree<mint> fwp(N+M+1); fenwick_tree<int> fwcnt(N+M+1); for (int i=1;i<N+1;i++){ fwcnt.add(i,1); fwp.add(i,ip.pow(zero[i])); } mint res; int pre,k; for (int i=N+1;i<N+M+1;i++){ if (A[i]==0){ res += N-1; } else{ pre = last[A[i]]; k = fwcnt.sum(1,pre); res += N-1; res += (fwp.sum(pre+1,i+1)) * p.pow(zero[i]); res -= k * p.pow(zero[i]-zero[pre]); fwcnt.add(pre,-1); fwp.add(pre,-ip.pow(zero[pre])); last[A[i]] = i; fwcnt.add(i,1); fwp.add(i,ip.pow(zero[i])); } } res /= 2; res += M; cout<<res.val()<<endl; }