結果
問題 | No.1239 Multiplication -2 |
ユーザー | kmjp |
提出日時 | 2020-09-25 23:40:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,046 bytes |
コンパイル時間 | 2,244 ms |
コンパイル使用メモリ | 202,180 KB |
実行使用メモリ | 13,672 KB |
最終ジャッジ日時 | 2024-06-28 08:22:31 |
合計ジャッジ時間 | 3,846 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 19 ms
12,928 KB |
testcase_18 | WA | - |
testcase_19 | AC | 20 ms
13,056 KB |
testcase_20 | AC | 21 ms
12,800 KB |
testcase_21 | AC | 20 ms
12,672 KB |
testcase_22 | AC | 20 ms
12,288 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 14 ms
8,832 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- int N; const ll mo=998244353; ll dp[202020][5]; // -2 -1 0 1 2 ll p2[303030]; void solve() { int i,j,k,l,r,x,y; string s; cin>>N; p2[0]=1; FOR(i,N) p2[i+1]=p2[i]*2%mo; dp[0][3]=1; ll ret=0; FOR(i,N) { cin>>x; // sp (ret+=dp[i][0]*p2[N-1-i])%=mo; if(x==0) { // con dp[i+1][2]=(dp[i][0]+dp[i][1]+dp[i][2]+dp[i][3]+dp[i][4])%mo; // new (dp[i+1][2]+=(dp[i][0]+dp[i][1]+dp[i][2]+dp[i][3]+dp[i][4]))%=mo; } if(x==1) { // con dp[i+1][0]=dp[i][0]; dp[i+1][1]=dp[i][1]; dp[i+1][2]=dp[i][2]; dp[i+1][3]=dp[i][3]; dp[i+1][4]=dp[i][4]; // new (dp[i+1][3]+=(dp[i][0]+dp[i][1]+dp[i][2]+dp[i][3]+dp[i][4]))%=mo; } if(x==-1) { // con dp[i+1][0]=dp[i][4]; dp[i+1][1]=dp[i][3]; dp[i+1][2]=dp[i][2]; dp[i+1][3]=dp[i][1]; dp[i+1][4]=dp[i][0]; // new (dp[i+1][1]+=(dp[i][0]+dp[i][1]+dp[i][2]+dp[i][3]+dp[i][4]))%=mo; } if(x==2) { // con dp[i+1][0]=dp[i][1]; dp[i+1][2]=dp[i][2]; dp[i+1][4]=dp[i][3]; // new (dp[i+1][4]+=(dp[i][0]+dp[i][1]+dp[i][2]+dp[i][3]+dp[i][4]))%=mo; } if(x==-2) { // con dp[i+1][0]=dp[i][3]; dp[i+1][2]=dp[i][2]; dp[i+1][4]=dp[i][1]; // new (dp[i+1][0]+=(dp[i][0]+dp[i][1]+dp[i][2]+dp[i][3]+dp[i][4]))%=mo; } } (ret+=dp[N][0])%=mo; FOR(i,N) ret=ret*(mo+1)/2%mo; cout<<ret%mo<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }