結果
問題 | No.387 ハンコ |
ユーザー | roiti46 |
提出日時 | 2016-10-10 16:52:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 898 ms / 5,000 ms |
コード長 | 847 bytes |
コンパイル時間 | 1,434 ms |
コンパイル使用メモリ | 161,028 KB |
実行使用メモリ | 7,808 KB |
最終ジャッジ日時 | 2024-11-22 00:50:55 |
合計ジャッジ時間 | 9,700 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 898 ms
7,680 KB |
testcase_01 | AC | 896 ms
7,808 KB |
testcase_02 | AC | 734 ms
6,144 KB |
testcase_03 | AC | 730 ms
6,144 KB |
testcase_04 | AC | 288 ms
6,528 KB |
testcase_05 | AC | 560 ms
7,040 KB |
testcase_06 | AC | 761 ms
7,552 KB |
testcase_07 | AC | 729 ms
6,528 KB |
testcase_08 | AC | 735 ms
6,144 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; template<typename T> using Graph = vector<vector<T>>; #define REP(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep(i, a) REP(i, 0, a) #define EACH(i, a) for (auto i: a) #define ITR(x, a) for (__typeof(a.begin()) x = a.begin(); x != a.end(); x++) #define ALL(a) (a.begin()), (a.end()) #define HAS(a, x) (a.find(x) != a.end()) #define endl '\n' int N; vector<int> a[100010]; bitset<200020> bs; bitset<200020> ts; int main(void) { cin.tie(0); ios::sync_with_stdio(false); cin >> N; int ai, bi; rep(i, N) cin >> ai, a[ai].push_back(i); rep(i, N) cin >> bi, bs[i] = bi; rep(i, 100010) if (a[i].size()) { bitset<200020> t; for (auto v: a[i]) t |= bs << v; ts ^= t; } rep(i, 2*N - 1) printf("%s\n", ts[i] ? "ODD":"EVEN"); return 0; }