結果

問題 No.1825 Except One
ユーザー 沙耶花沙耶花
提出日時 2022-01-28 21:51:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 231 ms / 3,000 ms
コード長 890 bytes
コンパイル時間 3,785 ms
コンパイル使用メモリ 267,148 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-06-10 11:16:56
合計ジャッジ時間 8,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
13,184 KB
testcase_01 AC 26 ms
13,056 KB
testcase_02 AC 32 ms
13,184 KB
testcase_03 AC 231 ms
13,312 KB
testcase_04 AC 156 ms
13,056 KB
testcase_05 AC 103 ms
13,440 KB
testcase_06 AC 46 ms
13,440 KB
testcase_07 AC 227 ms
13,312 KB
testcase_08 AC 225 ms
13,312 KB
testcase_09 AC 42 ms
13,184 KB
testcase_10 AC 192 ms
13,056 KB
testcase_11 AC 123 ms
13,184 KB
testcase_12 AC 173 ms
13,312 KB
testcase_13 AC 131 ms
13,056 KB
testcase_14 AC 20 ms
13,312 KB
testcase_15 AC 37 ms
13,440 KB
testcase_16 AC 38 ms
13,312 KB
testcase_17 AC 24 ms
13,184 KB
testcase_18 AC 20 ms
13,440 KB
testcase_19 AC 33 ms
13,184 KB
testcase_20 AC 33 ms
13,184 KB
testcase_21 AC 25 ms
13,312 KB
testcase_22 AC 28 ms
13,312 KB
testcase_23 AC 28 ms
13,312 KB
testcase_24 AC 114 ms
13,440 KB
testcase_25 AC 129 ms
13,056 KB
testcase_26 AC 61 ms
13,184 KB
testcase_27 AC 206 ms
13,312 KB
testcase_28 AC 227 ms
13,312 KB
testcase_29 AC 58 ms
13,312 KB
testcase_30 AC 59 ms
13,184 KB
testcase_31 AC 96 ms
13,184 KB
testcase_32 AC 229 ms
13,184 KB
testcase_33 AC 53 ms
13,184 KB
testcase_34 AC 228 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
#define Inf 1000000001



int main(){
	
	int n;
	cin>>n;
	
	vector<int> a(n);
	rep(i,n)cin>>a[i];
	int S = 100 * 3;
	vector dp(S,vector(S,vector<long long>(3,0)));
	rep(i,S){
		dp[i][0][0] = 1;
	}
	
	rep(i,n){
		vector ndp(S,vector(S,vector<long long>(3,0)));
		rep(j,S){
			rep(k,S){
				rep(l,3){
					if(dp[j][k][l]==0)continue;
					ndp[j][k][l] += dp[j][k][l];
					int nj = j;
					int nk = k;
					int nl = min(2,l+1);
					if(a[i] - nj > 0 )continue;
					nk += abs(a[i]-j);
					if(nk > j)continue;
					ndp[nj][nk][nl] += dp[j][k][l];
				}
			}
		}
	//	cout<<i<<endl;
		swap(dp,ndp);
	}
	

	
	long long ans = 0;
	for(int i=0;i<S;i++)ans += dp[i][i][2];
	
	
	
	cout<<ans<<endl;
		
	
	
	return 0;
}
0