結果
問題 | No.387 ハンコ |
ユーザー | simezi_tan |
提出日時 | 2016-07-02 03:44:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 853 ms / 5,000 ms |
コード長 | 1,894 bytes |
コンパイル時間 | 1,372 ms |
コンパイル使用メモリ | 162,228 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-10-12 02:13:03 |
合計ジャッジ時間 | 9,153 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 851 ms
10,624 KB |
testcase_01 | AC | 853 ms
10,592 KB |
testcase_02 | AC | 684 ms
8,848 KB |
testcase_03 | AC | 684 ms
8,932 KB |
testcase_04 | AC | 274 ms
9,164 KB |
testcase_05 | AC | 543 ms
9,824 KB |
testcase_06 | AC | 730 ms
10,348 KB |
testcase_07 | AC | 693 ms
9,352 KB |
testcase_08 | AC | 697 ms
8,980 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:23:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 23 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ main.cpp:25:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 25 | scanf("%d", a + i); | ~~~~~^~~~~~~~~~~~~ main.cpp:29:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 29 | int x; scanf("%d", &x); b[i] = x; | ~~~~~^~~~~~~~~~
ソースコード
#include<bits/stdc++.h> #define rep(i,n) for(int i=0;i<(int)n;i++) #define all(c) (c).begin(),(c).end() #define pb push_back #define dbg(...) do{cerr<<__LINE__<<": ";dbgprint(#__VA_ARGS__, __VA_ARGS__);}while(0); using namespace std; namespace std{template<class S,class T>struct hash<pair<S,T>>{size_t operator()(const pair<S,T>&p)const{return ((size_t)1e9+7)*hash<S>()(p.first)+hash<T>()(p.second);}};template<class T>struct hash<vector<T>>{size_t operator()(const vector<T> &v)const{size_t h=0;for(auto i : v)h=h*((size_t)1e9+7)+hash<T>()(i)+1;return h;}};} template<class T>ostream& operator<<(ostream &os, const vector<T> &v){os<<"[ ";rep(i,v.size())os<<v[i]<<(i==v.size()-1?" ]":", ");return os;}template<class T>ostream& operator<<(ostream &os,const set<T> &v){os<<"{ "; for(const auto &i:v)os<<i<<", ";return os<<"}";} template<class T,class U>ostream& operator<<(ostream &os,const map<T,U> &v){os<<"{";for(const auto &i:v)os<<" "<<i.first<<": "<<i.second<<",";return os<<"}";}template<class T,class U>ostream& operator<<(ostream &os,const pair<T,U> &p){return os<<"("<<p.first<<", "<<p.second<<")";} void dbgprint(const string &fmt){cerr<<endl;}template<class H,class... T>void dbgprint(const string &fmt,const H &h,const T&... r){cerr<<fmt.substr(0,fmt.find(","))<<"= "<<h<<" ";dbgprint(fmt.substr(fmt.find(",")+1),r...);} typedef long long ll;typedef vector<int> vi;typedef pair<int,int> pi;const int inf = (int)1e9;const double INF = 1e12, EPS = 1e-9; const int N = 200000; bitset<N> sum; bitset<N> b; int n, a[N]; vi pos[N]; int main(){ scanf("%d", &n); rep(i, n){ scanf("%d", a + i); pos[a[i]].pb(i); } rep(i, n){ int x; scanf("%d", &x); b[i] = x; } rep(i, N) if(pos[i].size()){ bitset<N> tmp; for(int j : pos[i]) tmp |= b << j; sum ^= tmp; //rep(j, 20)cerr<<tmp[j]<<(j==19?"\n":" "); } rep(i, 2 * n - 1) puts(sum[i] ? "ODD" : "EVEN"); return 0; }