結果

問題 No.1444 !Andd
ユーザー iaNTUiaNTU
提出日時 2021-01-24 17:52:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 201,136 KB
実行使用メモリ 43,724 KB
最終ジャッジ日時 2024-06-11 01:51:04
合計ジャッジ時間 4,448 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 25 ms
12,672 KB
testcase_04 AC 18 ms
9,728 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 20 ms
10,368 KB
testcase_07 AC 17 ms
9,088 KB
testcase_08 AC 43 ms
19,584 KB
testcase_09 AC 24 ms
13,056 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 54 ms
23,424 KB
testcase_13 AC 71 ms
31,360 KB
testcase_14 AC 7 ms
5,376 KB
testcase_15 AC 70 ms
30,336 KB
testcase_16 AC 105 ms
43,648 KB
testcase_17 AC 20 ms
9,728 KB
testcase_18 AC 104 ms
43,648 KB
testcase_19 AC 106 ms
43,724 KB
testcase_20 AC 107 ms
43,648 KB
testcase_21 AC 103 ms
43,648 KB
testcase_22 AC 101 ms
43,704 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