Submission #123560

# Submission time Handle Problem Language Result Execution time Memory
123560 2019-07-01T15:39:29 Z MetB OGLEDALA (COI15_ogledala) C++14
19 / 100
4000 ms 198656 KB
#include <unordered_map>
#include <algorithm>
#include <iostream>
#include <string.h>
#include <cstdlib>
#include <vector>
#include <string>
#include <bitset>
#include <math.h>
#include <queue>
#include <stack>
#include <set>
#include <map>
 
typedef long long ll;
typedef long double ld;
 
const ll MOD = 1e9 + 7, INF = 1e18 + 1;
 
using namespace std;

unordered_map <ll, vector < pair <ll, ll> > > d;

ll a[100000], n, m, q;

struct seg
{
	ll x, c, i;

	bool operator < (const seg& b) const
	{
		return (x == b.x ? i < b.i : x > b.x);
	}
};

vector <seg> v;

void calc (ll x, ll i, bool f)
{
	if (d.find (x) != d.end ()) return;
	if (!x) return;

	ll l = (x - 1) / 2, r = x - 1 - l;

	calc (l, i, f);
	calc (r, i, f);

	ll ptr1 = 0, ptr2 = 0;

	auto &vx = d[x], &v_l = d[l], &v_r = d[r];

	while (ptr1 != v_l.size () || ptr2 != v_r.size ())
	{
		if (ptr1 != v_l.size () && ptr2 != v_r.size () && v_l[ptr1].first == v_r[ptr2].first)
		{
			vx.emplace_back (v_l[ptr1].first, v_l[ptr1].second + v_r[ptr2].second);

			ptr1++;
			ptr2++;

			continue;
		}

		if (ptr1 < v_l.size () && (ptr2 == v_r.size () || v_l[ptr1] < v_r[ptr2]))
		{
			vx.push_back (v_l[ptr1]);
			ptr1++;
		}
		else
		{
			vx.push_back (v_r[ptr2]);
			ptr2++;
		}
	}

	vx.emplace_back (x, 1);
}

ll ord_stat (ll x, ll c, ll len, ll l, ll r)
{
	if (len == x) return (l + r) / 2;
	ll m = (l + r) / 2;
	ll len_l = (len - 1) / 2, len_r = len - 1 - len_l;

	auto& v_l = d[len_l], v_r = d[len_r];


	ll k = lower_bound (v_l.begin (), v_l.end (), make_pair (x, 0LL)) - v_l.begin ();

	if (k != v_l.size () && v_l[k].first == x)
	{
		if (v_l[k].second >= c) return ord_stat (x, c, len_l, l, m - 1);
		else return ord_stat (x, c - v_l[k].second, len_r, m + 1, r);
	}
	else return ord_stat (x, c, len_r, m + 1, r);
}

int main ()
{
	cin >> m >> n >> q;

	for (ll i = 0; i < n; i++)
	{
		scanf ("%lld", &a[i]);

		if (i) calc (a[i] - a[i-1] - 1, i, true);
		else calc (a[i] - 1, i, true);

		for (auto k : d[a[i] - (i ? a[i-1] : 0) - 1])
			v.push_back ({k.first, k.second, i});

		if (i & 8) d.clear ();
	}

	calc (m - (n ? a[n-1] : 0), n, true);

	for (auto k : d[m - (n ? a[n-1] : 0)])
		v.push_back ({k.first, k.second, n});

	sort (v.begin(), v.end());

	ll sum = 0, ptr = 0;

	for (ll i = 0; i < q; i++)
	{
		ll b;
		scanf ("%lld", &b);
		if (b <= n)
		{
			printf ("%lld\n", a[b-1]);
			continue;
		}
		b -= n;
		if (sum + v[ptr].c < b)
		{
			do
			{
				sum += v[ptr].c;
				ptr++;
			}
			while (ptr != v.size () && sum + v[ptr].c < b);
		}

		ll l = (v[ptr].i ? a[v[ptr].i - 1] + 1 : 1), r = (v[ptr].i != n ? a[v[ptr].i] - 1 : m);

		calc (r - l + 1, 0, false);

		printf ("%lld\n", ord_stat (v[ptr].x, b - sum, r - l + 1, l, r));
	}
}

Compilation message

ogledala.cpp: In function 'void calc(ll, ll, bool)':
ogledala.cpp:52:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  while (ptr1 != v_l.size () || ptr2 != v_r.size ())
         ~~~~~^~~~~~~~~~~~~~
ogledala.cpp:52:37: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  while (ptr1 != v_l.size () || ptr2 != v_r.size ())
                                ~~~~~^~~~~~~~~~~~~~
ogledala.cpp:54:12: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   if (ptr1 != v_l.size () && ptr2 != v_r.size () && v_l[ptr1].first == v_r[ptr2].first)
       ~~~~~^~~~~~~~~~~~~~
ogledala.cpp:54:35: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   if (ptr1 != v_l.size () && ptr2 != v_r.size () && v_l[ptr1].first == v_r[ptr2].first)
                              ~~~~~^~~~~~~~~~~~~~
ogledala.cpp:64:12: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   if (ptr1 < v_l.size () && (ptr2 == v_r.size () || v_l[ptr1] < v_r[ptr2]))
       ~~~~~^~~~~~~~~~~~~
ogledala.cpp:64:35: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   if (ptr1 < v_l.size () && (ptr2 == v_r.size () || v_l[ptr1] < v_r[ptr2]))
                              ~~~~~^~~~~~~~~~~~~~
ogledala.cpp: In function 'll ord_stat(ll, ll, ll, ll, ll)':
ogledala.cpp:90:8: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  if (k != v_l.size () && v_l[k].first == x)
      ~~^~~~~~~~~~~~~~
ogledala.cpp: In function 'int main()':
ogledala.cpp:141:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
    while (ptr != v.size () && sum + v[ptr].c < b);
           ~~~~^~~~~~~~~~~~
ogledala.cpp:104:9: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf ("%lld", &a[i]);
   ~~~~~~^~~~~~~~~~~~~~~
ogledala.cpp:127:9: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf ("%lld", &b);
   ~~~~~~^~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 3 ms 376 KB Output is correct
2 Correct 3 ms 376 KB Output is correct
3 Correct 56 ms 2028 KB Output is correct
4 Correct 51 ms 2032 KB Output is correct
5 Correct 107 ms 7396 KB Output is correct
6 Correct 102 ms 7272 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 22 ms 2552 KB Output is correct
2 Correct 21 ms 2660 KB Output is correct
3 Execution timed out 4021 ms 198504 KB Time limit exceeded
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 3070 ms 154860 KB Output is correct
2 Correct 3206 ms 147120 KB Output is correct
3 Execution timed out 4046 ms 198656 KB Time limit exceeded
4 Halted 0 ms 0 KB -