結果

問題 No.1444 !Andd
ユーザー first_vilfirst_vil
提出日時 2021-01-23 15:36:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 1,839 ms
コンパイル使用メモリ 201,380 KB
実行使用メモリ 43,652 KB
最終ジャッジ日時 2024-06-09 21:28:31
合計ジャッジ時間 3,855 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 23 ms
12,672 KB
testcase_04 AC 16 ms
9,600 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 18 ms
10,240 KB
testcase_07 AC 14 ms
8,832 KB
testcase_08 AC 36 ms
19,456 KB
testcase_09 AC 25 ms
13,056 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 48 ms
23,296 KB
testcase_13 AC 64 ms
31,360 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 63 ms
30,208 KB
testcase_16 AC 88 ms
43,648 KB
testcase_17 AC 18 ms
9,728 KB
testcase_18 AC 91 ms
43,648 KB
testcase_19 AC 89 ms
43,652 KB
testcase_20 AC 90 ms
43,648 KB
testcase_21 AC 89 ms
43,648 KB
testcase_22 AC 90 ms
43,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

constexpr int kN = int(2E4 + 10);
constexpr int kC = 1 << 10;

int a[kN];
bool now[kN][kC], dp[kN][kC];

int main() {
	int n, ans = 1;
	scanf("%d", &n);
	for (int i = 1; i <= n; i++) scanf("%d", &a[i]);
	
	now[0][1] = true;
	for (int i = 1; i <= n; i++) {
		if (a[i] == 0) {
			while (i++ <= n) printf("1\n");
			break;
		}
		for (int j = 0; j < kC; j++) if (now[i - 1][j]) dp[i][j & a[i]] = true;
		for (int j = 0; j < kC; j++) if (dp[i][j]) ans++;
		if (now[i - 1][1] && dp[i][a[i]]) ans--;
		if (dp[i - 1][0]) ans--;
		for (int j = 0; j < kC; j++) if (now[i - 1][j]) now[i][(j * a[i]) & (kC - 1)] = true;
		for (int j = 0; j < kC; j++) if (dp[i][j]) now[i][j] = true;
		printf("%d\n", ans);
	}
}
0