結果

問題 No.1694 ZerOne
ユーザー kotatsugamekotatsugame
提出日時 2021-10-01 21:42:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 511 bytes
コンパイル時間 581 ms
コンパイル使用メモリ 70,272 KB
実行使用メモリ 55,020 KB
最終ジャッジ日時 2024-07-19 10:52:21
合計ジャッジ時間 1,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 17 ms
23,040 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 9 ms
10,112 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 7 ms
8,320 KB
testcase_08 AC 10 ms
12,032 KB
testcase_09 AC 17 ms
24,832 KB
testcase_10 AC 6 ms
7,040 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 11 ms
14,208 KB
testcase_14 AC 17 ms
23,424 KB
testcase_15 AC 8 ms
9,216 KB
testcase_16 AC 8 ms
9,600 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 28 ms
55,020 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 27 ms
54,272 KB
testcase_24 AC 19 ms
29,952 KB
testcase_25 AC 20 ms
29,952 KB
testcase_26 AC 4 ms
6,272 KB
testcase_27 AC 25 ms
48,768 KB
testcase_28 AC 15 ms
20,352 KB
testcase_29 AC 14 ms
19,584 KB
testcase_30 AC 16 ms
21,888 KB
testcase_31 AC 19 ms
26,112 KB
testcase_32 AC 20 ms
29,952 KB
testcase_33 AC 19 ms
29,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
string S;
vector<int>ids;
const int off=30*30;
long dp[61][61][off*2+1];
main()
{
	cin>>S;
	for(int i=0;i<S.size();i++)if(S[i]=='1')ids.push_back(i);
	dp[0][0][off]=1;
	for(int i=0;i<S.size();i++)for(int j=0;j<=ids.size();j++)
	{
		for(int k=0;k<=off*2;k++)
		{
			dp[i+1][j][k]+=dp[i][j][k];
			if(j<ids.size())
			{
				int nk=k+i-ids[j];
				if(nk>=0&&nk<=off*2)dp[i+1][j+1][nk]+=dp[i][j][k];
			}
		}
	}
	cout<<dp[S.size()][ids.size()][off]<<endl;
}
0