結果
問題 | No.670 log は定数 |
ユーザー | char134217728 |
提出日時 | 2019-01-11 17:00:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3,029 ms / 4,000 ms |
コード長 | 2,397 bytes |
コンパイル時間 | 1,635 ms |
コンパイル使用メモリ | 172,940 KB |
実行使用メモリ | 19,108 KB |
最終ジャッジ日時 | 2024-05-06 17:25:27 |
合計ジャッジ時間 | 34,980 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,963 ms
19,108 KB |
testcase_01 | AC | 2,966 ms
18,968 KB |
testcase_02 | AC | 2,973 ms
18,964 KB |
testcase_03 | AC | 2,955 ms
18,892 KB |
testcase_04 | AC | 2,957 ms
18,940 KB |
testcase_05 | AC | 2,970 ms
19,056 KB |
testcase_06 | AC | 2,962 ms
18,892 KB |
testcase_07 | AC | 3,001 ms
19,056 KB |
testcase_08 | AC | 3,029 ms
18,876 KB |
testcase_09 | AC | 2,990 ms
19,040 KB |
コンパイルメッセージ
main.cpp:55:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 55 | main(){ | ^~~~
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,a,b) for (int i=(a);i<(b);i++) #define FORR(i,a,b) for (int i=(a);i>=(b);i--) #define pb push_back #define mp make_pair #define fi first #define se second #define pcnt __builtin_popcount #define sz(x) (int)(x).size() #define maxs(x,y) x=max(x,y) #define mins(x,y) x=min(x,y) #define show(x) cout<<#x<<" = "<<x<<endl; #define all(a) (a.begin()),(a.end()) #define each(it,c) for(__typeof((c).begin()) it=(c).begin();it!=(c).end();it++) #define perm(c) sort(all(c));for(bool c##p=1;c##p;c##p=next_permutation(all(c))) #define bit(n) (1LL<<(n)) #define randInt(l,r) (uniform_int_distribution<ll>(l,r)(rnd)) #define randDouble(l,r) (uniform_real_distribution<double>(l,r)(rnd)) typedef long long ll; typedef __int128_t lll; typedef pair<int,int> pii; typedef pair<ll,ll> pll; template<class T>using V=vector<T>; template<class T>using VV=V<V<T>>; template<class T,class Y>ostream& operator<<(ostream& o,const pair<T,Y>& p){return o<<"("<<p.fi<<", "<<p.se<<")";} template<typename A,size_t N,typename T>void Fill(A (&array)[N],const T&v){fill((T*)array,(T*)(array+N),v);} lll gcd(lll a,lll b,lll &x,lll &y){if(!b){x=1;y=0;return a;}lll d=gcd(b,a%b,y,x);y-=a/b*x;return d;} ll gcd(ll a,ll b){lll x=0,y=0;return gcd(a,b,x,y);} ll modPow(lll a,lll n,ll m){if(!a)return a;lll p=1;for(;n>0;n>>=1,a=a*a%m)if(n&1)p=p*a%m;return(ll)p;} bool isPrime(ll n){if(n<2||n%2==0)return n==2;lll t=n-1,d=t/(t&-t);for(lll a:{2,325,9375,28178,450775,9780504,1795265022})if(a%n){for(t=d,a=modPow(a,t,n);t!=n-1&&a!=1&&a!=n-1;a=a*a%n,t=t*2%n);if(a!=n-1&&t%2==0)return 0;}return 1;} void dout(double d){printf("%.12f\n",d);} const int IINF = 1e9+6; const ll LINF = 1e18; const int MOD = 1e9+7; const double PI = acos(-1); const double EPS = 1e-10; static random_device rd; static mt19937 rnd(rd()); const int NN = 19; const int N = 1<<NN; int n, c[N]; V<int> b[N]; unsigned long long seed; ll q; inline int next() { seed ^= seed << 13; seed ^= seed >> 7; seed ^= seed << 17; return seed >> 33; } main(){ cin.tie(0); ios::sync_with_stdio(false); cin >> n >> q >> seed; FOR(i, 0, 10000) next(); FOR(i, 0, n){ int a = next(); b[a>>NN].pb(a); } FOR(i, 1, N) c[i] += c[i-1]+sz(b[i-1]); ll ans = 0; for(ll i=0; i<q; i++){ int a = next(), d = c[a>>NN]; for(int e:b[a>>NN]) if(e<a)d++; ans ^= i*d; } cout << ans << endl; }