結果

問題 No.387 ハンコ
ユーザー pew pew pewpew pew pew
提出日時 2024-10-11 21:15:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 757 ms / 5,000 ms
コード長 547 bytes
コンパイル時間 1,838 ms
コンパイル使用メモリ 171,076 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-10-11 21:16:00
合計ジャッジ時間 9,391 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 731 ms
8,192 KB
testcase_01 AC 757 ms
8,192 KB
testcase_02 AC 605 ms
6,916 KB
testcase_03 AC 621 ms
6,792 KB
testcase_04 AC 234 ms
6,784 KB
testcase_05 AC 476 ms
7,296 KB
testcase_06 AC 613 ms
7,808 KB
testcase_07 AC 633 ms
7,168 KB
testcase_08 AC 604 ms
6,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int N = 100010;
ll n;
vector <ll> col[N];
bitset <N << 1> use, ans;

int main()
{
	scanf("%lld", &n);
	for (int i = 0, a; i < n; i++) scanf("%d", &a), col[a].push_back(i);
	for (int i = 0, b; i < n; i++) scanf("%lld", &b), use[i] = b;
	for (int i = 0; i < N; i++)
	{
		if (col[i].empty()) continue;
		bitset <N << 1> tmp;
		for (auto x : col[i]) tmp |= (use << x);
		ans ^= tmp;
	}
	for (int i = 0; i < (n << 1) - 1; i++) printf(ans[i] ? "ODD\n" : "EVEN\n");
	return 0;
}
0