답안 #27501

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
27501 2017-07-13T08:13:50 Z 김현수(#1153) OGLEDALA (COI15_ogledala) C++14
41 / 100
4000 ms 114200 KB
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll,ll> pll;
const ll N = 100005;

ll l, n, m, a[N], qry[N], cur[N];
vector<ll> dt[N], v[N];

priority_queue<pll> pq;

ll geti (vector<ll> &V, ll I, ll P) {
	for(ll i=max(0ll, I-3);i<I;i++) if(V[i] == P) return i;
	return -1;
}

void add (vector<ll> &V, ll A) {
	if(A <= 0 || geti(V, V.size(), A) != -1) return;
	V.push_back(A);
}

void kth (ll I, ll C, ll O, ll S, ll E, ll K) {
	if(C == O) {printf("%lld\n",(S+E)/2); return;}
	ll L = E-S+1, I1 = geti(v[I], C, (L-1)/2), I2 = (L/2 == (L-1)/2 ? I1 : I1+1);
	if(I1>=O && dt[I][I1] >= K) kth(I, I1, O, S, (S+E)/2-1, K);
	else kth(I, I2, O, (S+E)/2+1, E, K - (I1>=O ? dt[I][I1] : 0));
}

void calc (vector<ll> &D, vector<ll> &V, ll O) {
	D.clear();
	for(ll i=0;i<V.size();i++) {
		D.push_back(0);
		if(i == O) D[i] = 1;
		else if(i > O) {
			ll I1 = geti(V, i, (V[i]-1)/2);
			ll I2 = (V[i]/2 == (V[i]-1)/2 ? I1 : I1+1);
			if(I1 != -1) D[i] += D[I1];
			if(I2 != -1) D[i] += D[I2];
		}
	}
}

int main() {
	scanf("%lld%lld%lld",&l,&n,&m);
	for(ll i=1;i<=n;i++) scanf("%lld",&a[i]);
	a[n+1] = l+1;
	for(ll i=1;i<=n+1;i++) {
		add(v[i], a[i]-a[i-1]-1);
		for(ll j=0;j<v[i].size();j++) {
			add(v[i], v[i][j]/2);
			add(v[i], (v[i][j]-1)/2);
		}
		reverse(v[i].begin(), v[i].end());
	}
	for(ll i=1;i<=n+1;i++) {
		cur[i] = v[i].size();
		if(--cur[i] >= 0) {
			calc(dt[i], v[i], cur[i]);
			pq.push({v[i][cur[i]], -i});
		}
	}
	ll cq = 1, dn = n;
	for(ll i=1;i<=m;i++) {
		scanf("%lld",&qry[i]);
		if(qry[i] <= n) {
			cq++;
			printf("%lld\n",a[qry[i]]);
		}
	}
	while(!pq.empty()) {
		ll C = -pq.top().second, V = dt[C][v[C].size()-1]; pq.pop();
		for(;cq <= m && qry[cq] <= dn + V; cq++) {
			kth(C, v[C].size()-1, cur[C], a[C-1]+1, a[C]-1, qry[cq]-dn);
		}
		if(cq > m) break;
		dn += V;
		if(--cur[C] >= 0) {
			calc(dt[C], v[C], cur[C]);
			pq.push({v[C][cur[C]], -C});
		}
	}
}

Compilation message

ogledala.cpp: In function 'void calc(std::vector<long long int>&, std::vector<long long int>&, ll)':
ogledala.cpp:31:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(ll i=0;i<V.size();i++) {
              ^
ogledala.cpp: In function 'int main()':
ogledala.cpp:49:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(ll j=0;j<v[i].size();j++) {
               ^
ogledala.cpp:44:32: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%lld%lld%lld",&l,&n,&m);
                                ^
ogledala.cpp:45:42: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  for(ll i=1;i<=n;i++) scanf("%lld",&a[i]);
                                          ^
ogledala.cpp:64:24: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%lld",&qry[i]);
                        ^
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 9056 KB Output is correct
2 Correct 0 ms 9056 KB Output is correct
3 Correct 46 ms 10396 KB Output is correct
4 Correct 69 ms 10504 KB Output is correct
5 Correct 109 ms 17020 KB Output is correct
6 Correct 119 ms 17312 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 9188 KB Output is correct
2 Correct 6 ms 9188 KB Output is correct
3 Correct 566 ms 114132 KB Output is correct
4 Correct 559 ms 114200 KB Output is correct
5 Correct 556 ms 114200 KB Output is correct
6 Correct 623 ms 114200 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2999 ms 73016 KB Output is correct
2 Correct 3633 ms 70244 KB Output is correct
3 Execution timed out 4000 ms 113088 KB Execution timed out
4 Halted 0 ms 0 KB -