結果
問題 | No.1741 Arrays and XOR Procedure |
ユーザー | inksamurai |
提出日時 | 2021-11-12 22:42:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 49 ms / 2,000 ms |
コード長 | 2,060 bytes |
コンパイル時間 | 1,629 ms |
コンパイル使用メモリ | 173,976 KB |
実行使用メモリ | 14,976 KB |
最終ジャッジ日時 | 2024-05-04 10:13:03 |
合計ジャッジ時間 | 3,841 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 48 ms
14,848 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 36 ms
14,976 KB |
testcase_06 | AC | 45 ms
14,976 KB |
testcase_07 | AC | 44 ms
14,976 KB |
testcase_08 | AC | 37 ms
14,976 KB |
testcase_09 | AC | 43 ms
13,440 KB |
testcase_10 | AC | 42 ms
13,824 KB |
testcase_11 | AC | 34 ms
11,392 KB |
testcase_12 | AC | 27 ms
9,600 KB |
testcase_13 | AC | 40 ms
13,056 KB |
testcase_14 | AC | 26 ms
10,368 KB |
testcase_15 | AC | 38 ms
12,544 KB |
testcase_16 | AC | 4 ms
5,376 KB |
testcase_17 | AC | 15 ms
6,656 KB |
testcase_18 | AC | 29 ms
10,752 KB |
testcase_19 | AC | 3 ms
5,376 KB |
testcase_20 | AC | 47 ms
14,592 KB |
testcase_21 | AC | 35 ms
12,032 KB |
testcase_22 | AC | 31 ms
11,136 KB |
testcase_23 | AC | 15 ms
6,272 KB |
testcase_24 | AC | 5 ms
5,376 KB |
testcase_25 | AC | 49 ms
14,592 KB |
testcase_26 | AC | 21 ms
7,936 KB |
testcase_27 | AC | 4 ms
5,376 KB |
testcase_28 | AC | 34 ms
11,648 KB |
testcase_29 | AC | 37 ms
12,800 KB |
testcase_30 | AC | 32 ms
11,392 KB |
testcase_31 | AC | 3 ms
5,376 KB |
testcase_32 | AC | 19 ms
7,808 KB |
testcase_33 | AC | 24 ms
9,088 KB |
testcase_34 | AC | 9 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 5 ms
5,376 KB |
testcase_37 | AC | 18 ms
7,808 KB |
testcase_38 | AC | 44 ms
14,336 KB |
testcase_39 | AC | 16 ms
7,040 KB |
testcase_40 | AC | 3 ms
5,376 KB |
testcase_41 | AC | 8 ms
5,376 KB |
testcase_42 | AC | 4 ms
5,376 KB |
testcase_43 | AC | 2 ms
5,376 KB |
ソースコード
#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>; //https://cp-algorithms.com/combinatorics/binomial-coefficients.html //https://en.wikipedia.org/wiki/Lucas's_theorem ll cenk(ll x,ll y) { if(x==y or x==0) return 1; if(x>y) return 0; return cenk(x-1,y)+cenk(x-1,y-1); } ll cnk(ll k , ll n){ if(k>n) return 0; ll c=1; while(n>0) { c *= cenk(k%2,n%2); c%=2; n/=2; k/=2; } return c; } int main(){ _3pPbCt8; // prefact(); 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; rep(i,n){ rep(x,2){ if(a[i]!=-1) x=a[i]; int e=x*cnk(i,n-1)%2; e%=2; rep(ox,2){ dp[i+1][(e+ox)%2]+=dp[i][ox]; } if(a[i]!=-1) break; } } cout<<dp[n][1].x<<"\n"; // return 0; }