結果
問題 | No.387 ハンコ |
ユーザー | sugim48 |
提出日時 | 2016-07-01 23:05:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,218 ms / 5,000 ms |
コード長 | 1,153 bytes |
コンパイル時間 | 814 ms |
コンパイル使用メモリ | 95,460 KB |
実行使用メモリ | 7,808 KB |
最終ジャッジ日時 | 2024-10-12 01:09:12 |
合計ジャッジ時間 | 12,429 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,218 ms
7,808 KB |
testcase_01 | AC | 1,203 ms
7,808 KB |
testcase_02 | AC | 1,176 ms
6,272 KB |
testcase_03 | AC | 1,185 ms
6,400 KB |
testcase_04 | AC | 581 ms
6,400 KB |
testcase_05 | AC | 842 ms
7,040 KB |
testcase_06 | AC | 1,044 ms
7,424 KB |
testcase_07 | AC | 1,168 ms
6,272 KB |
testcase_08 | AC | 1,173 ms
6,400 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:41:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 41 | int a; scanf("%d", &a); | ~~~~~^~~~~~~~~~ main.cpp:46:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 46 | int b; scanf("%d", &b); | ~~~~~^~~~~~~~~~
ソースコード
#define _USE_MATH_DEFINES #include <algorithm> #include <bitset> #include <cstdio> #include <functional> #include <iostream> #include <cfloat> #include <climits> #include <cstdlib> #include <cstring> #include <cmath> #include <map> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <time.h> #include <vector> #include <random> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> i_i; typedef pair<ll, int> ll_i; typedef pair<double, int> d_i; typedef pair<ll, ll> ll_ll; typedef pair<double, double> d_d; struct edge { int u, v; ll w; }; int INF = INT_MAX / 10; ll MOD = 10007; ll _MOD = 1000000009; double EPS = 1e-10; int main() { int N; cin >> N; vector<vector<int> > v(100000); for (int i = 0; i < N; i++) { int a; scanf("%d", &a); v[a - 1].push_back(i); } bitset<200000> x; for (int i = 0; i < N; i++) { int b; scanf("%d", &b); if (b) x.set(i); } bitset<200000> z; for (vector<int>& a: v) { bitset<200000> y; for (int i: a) y |= x << i; z ^= y; } for (int i = 0; i < N * 2 - 1; i++) cout << (!z[i] ? "EVEN" : "ODD") << endl; }