結果

問題 No.1741 Arrays and XOR Procedure
ユーザー inksamuraiinksamurai
提出日時 2021-11-12 22:08:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,832 bytes
コンパイル時間 1,767 ms
コンパイル使用メモリ 172,116 KB
実行使用メモリ 15,052 KB
最終ジャッジ日時 2024-05-04 09:00:18
合計ジャッジ時間 3,547 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 30 ms
15,052 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 28 ms
14,800 KB
testcase_06 AC 31 ms
14,896 KB
testcase_07 AC 32 ms
14,892 KB
testcase_08 AC 28 ms
14,936 KB
testcase_09 AC 26 ms
13,440 KB
testcase_10 AC 27 ms
13,824 KB
testcase_11 AC 23 ms
11,380 KB
testcase_12 AC 18 ms
9,472 KB
testcase_13 AC 25 ms
13,024 KB
testcase_14 AC 20 ms
10,240 KB
testcase_15 AC 27 ms
12,544 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 22 ms
10,752 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 24 ms
11,904 KB
testcase_22 WA -
testcase_23 AC 9 ms
6,272 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 31 ms
14,556 KB
testcase_26 WA -
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 23 ms
11,648 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 13 ms
7,936 KB
testcase_33 AC 17 ms
9,088 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 5 ms
5,376 KB
testcase_37 AC 12 ms
7,680 KB
testcase_38 AC 30 ms
14,336 KB
testcase_39 AC 12 ms
7,040 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 6 ms
5,376 KB
testcase_42 WA -
testcase_43 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define fi first
#define se second
#define pb push_back
#define sz(a) (int)a.size()
#define all(a) a.begin(),a.end()
#define rep(i,n) for(int i=0;i<n;i++)
#define crep(i,x,n) for(int i=x;i<n;i++)
#define drep(i,n) for(int i=n-1;i>=0;i--)
#define vec(...) vector<__VA_ARGS__>
#define _3pPbCt8 ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0)
using namespace std;
typedef long long ll;
typedef long double ld;
using pii=pair<int,int>;
using vi=vector<int>;

//snuke's modular int
template <ll mod>
struct modularint{
	ll x;
	modularint(ll x=0):x(x%mod){}
	modularint& operator+=(const modularint a){
		if ((x += a.x) >= mod) x -= mod;
		return *this;
	}
	modularint& operator-=(const modularint a){
		if ((x += mod-a.x) >= mod) x -= mod;
		return *this;
	}
	modularint& operator*=(const modularint a){
		(x *= a.x) %= mod;
		return *this;
	}
	modularint operator+(const modularint a)const{
		modularint res(*this);
		return res+=a;
	}
	modularint operator-(const modularint a)const{
		modularint res(*this);
		return res-=a;
	}
	modularint operator*(const modularint a)const{
		modularint res(*this);
		return res*=a;
	}
	modularint pow(ll n)const{
		modularint res=1,x(*this);
		while(n){
			if(n&1)res*=x;
			x*=x;
			n>>=1;
		}
		return res;
	}
	modularint inv()const{
		return pow(mod-2);
	}
};
using mint=modularint<998244353>;

int main(){
_3pPbCt8;
	int n;
	cin>>n;
	vi a(n);
	rep(i,n){
		cin>>a[i];
	}
	vec(vec(mint)) dp(n+1,vec(mint)(2,0));
	dp[0][0]=1;
	int e=n-1;
	e%=2;
	rep(i,n){
		rep(ox,2){
			int now;
			if(a[i]!=-1){
				now=(i==0 or i==n-1?a[i]:a[i]*e);
				now%=2;
				dp[i+1][(now+ox)%2]+=dp[i][ox];
			}else{
				rep(x,2){
					now=(i==0 or i==n-1?x:x*e);
					now%=2;
					dp[i+1][(now+ox)%2]+=dp[i][ox];
				}
			}
		}
	}
	mint ans=dp[n][1];
	cout<<ans.x<<"\n";
//	
	return 0;
}
0