結果
問題 | No.387 ハンコ |
ユーザー | yosupot |
提出日時 | 2016-06-22 22:32:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,136 ms / 5,000 ms |
コード長 | 899 bytes |
コンパイル時間 | 635 ms |
コンパイル使用メモリ | 72,356 KB |
実行使用メモリ | 7,936 KB |
最終ジャッジ日時 | 2024-10-11 19:32:27 |
合計ジャッジ時間 | 11,942 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,136 ms
7,936 KB |
testcase_01 | AC | 1,135 ms
7,808 KB |
testcase_02 | AC | 1,105 ms
6,272 KB |
testcase_03 | AC | 1,108 ms
6,400 KB |
testcase_04 | AC | 626 ms
6,656 KB |
testcase_05 | AC | 850 ms
7,296 KB |
testcase_06 | AC | 1,015 ms
7,680 KB |
testcase_07 | AC | 1,106 ms
6,784 KB |
testcase_08 | AC | 1,103 ms
6,144 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:17:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 17 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ main.cpp:20:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 20 | scanf("%d", &a); | ~~~~~^~~~~~~~~~ main.cpp:26:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 26 | scanf("%d", &x); | ~~~~~^~~~~~~~~~
ソースコード
#include <iostream> #include <vector> #include <cstring> #include <algorithm> #include <queue> #include <cmath> #include <bitset> using namespace std; using ll = long long; const int MN = 100100; vector<int> g[MN]; using B = bitset<2*MN>; int main() { int n; scanf("%d", &n); for (int i = 0; i < n; i++) { int a; scanf("%d", &a); g[a].push_back(i); } B mp; mp.reset(); for (int i = 0; i < n; i++) { int x; scanf("%d", &x); if (x == 1) { mp[i] = true; } } B ans; ans.reset(); for (int i = 0; i < MN; i++) { B res; res.reset(); for (int d: g[i]) { res |= mp << d; } ans ^= res; } for (int i = 0; i < 2*n-1; i++) { if (ans[i]) { printf("ODD\n"); } else { printf("EVEN\n"); } } return 0; }