結果
問題 | No.387 ハンコ |
ユーザー | Min_25 |
提出日時 | 2016-07-04 03:48:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 880 ms / 5,000 ms |
コード長 | 1,264 bytes |
コンパイル時間 | 919 ms |
コンパイル使用メモリ | 80,736 KB |
実行使用メモリ | 7,808 KB |
最終ジャッジ日時 | 2024-10-12 20:02:22 |
合計ジャッジ時間 | 8,839 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 878 ms
7,680 KB |
testcase_01 | AC | 880 ms
7,808 KB |
testcase_02 | AC | 717 ms
6,272 KB |
testcase_03 | AC | 716 ms
6,400 KB |
testcase_04 | AC | 283 ms
6,528 KB |
testcase_05 | AC | 552 ms
7,040 KB |
testcase_06 | AC | 739 ms
7,552 KB |
testcase_07 | AC | 713 ms
6,528 KB |
testcase_08 | AC | 711 ms
6,400 KB |
コンパイルメッセージ
main.cpp: In function ‘void solve()’: main.cpp:33:15: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 33 | int N; scanf("%d", &N); | ~~~~~^~~~~~~~~~ main.cpp:36:17: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 36 | int a; scanf("%d", &a); | ~~~~~^~~~~~~~~~ main.cpp:40:17: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 40 | int b; scanf("%d", &b); | ~~~~~^~~~~~~~~~
ソースコード
#include <cstdio> #include <cassert> #include <cmath> #include <cstring> #include <algorithm> #include <iostream> #include <vector> #include <map> #include <set> #include <functional> #include <tuple> #include <bitset> #define _rep(_1, _2, _3, _4, name, ...) name #define rep2(i, n) rep3(i, 0, n) #define rep3(i, a, b) rep4(i, a, b, 1) #define rep4(i, a, b, c) for (int i = int(a); i < int(b); i += int(c)) #define rep(...) _rep(__VA_ARGS__, rep4, rep3, rep2, _)(__VA_ARGS__) using namespace std; using i64 = long long; using u8 = unsigned char; using u32 = unsigned; using u64 = unsigned long long; using f80 = long double; // #pragma GCC optimize "O3" // enable SIMD void solve() { const int M = 100000; static bitset<2 * M> A, B, C; int N; scanf("%d", &N); vector<vector<int>> As(M); rep(i, N) { int a; scanf("%d", &a); As[a - 1].push_back(i); } rep(i, N) { int b; scanf("%d", &b); if (b) B[i] = 1; } rep(i, M) if (As[i].size()) { A.reset(); for (auto&& a : As[i]) A |= B << a; C ^= A; } rep(i, 2 * N - 1) { puts(C[i] ? "ODD" : "EVEN"); } } int main() { clock_t beg = clock(); solve(); clock_t end = clock(); fprintf(stderr, "%.3f sec\n", double(end - beg) / CLOCKS_PER_SEC); return 0; }