Submission #916124

# Submission time Handle Problem Language Result Execution time Memory
916124 2024-01-25T10:45:54 Z GrindMachine Gap (APIO16_gap) C++17
0 / 100
2000 ms 524288 KB
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>

using namespace std;
using namespace __gnu_pbds;

template<typename T> using Tree = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
typedef long long int ll;
typedef long double ld;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;

#define fastio ios_base::sync_with_stdio(false); cin.tie(NULL)
#define pb push_back
#define endl '\n'
#define sz(a) (int)a.size()
#define setbits(x) __builtin_popcountll(x)
#define ff first
#define ss second
#define conts continue
#define ceil2(x,y) ((x+y-1)/(y))
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define yes cout << "Yes" << endl
#define no cout << "No" << endl

#define rep(i,n) for(int i = 0; i < n; ++i)
#define rep1(i,n) for(int i = 1; i <= n; ++i)
#define rev(i,s,e) for(int i = s; i >= e; --i)
#define trav(i,a) for(auto &i : a)

template<typename T>
void amin(T &a, T b) {
    a = min(a,b);
}

template<typename T>
void amax(T &a, T b) {
    a = max(a,b);
}

#ifdef LOCAL
#include "debug.h"
#else
#define debug(x) 42
#endif

/*

read some solutions a long time ago, slightly remember some ideas
may have still solved it if not for those ideas

*/

const int MOD = 1e9 + 7;
const int N = 1e5 + 5;
const int inf1 = int(1e9) + 5;
const ll inf2 = ll(1e18) + 5;

#include "gap.h"

ll n;

ll go(ll l, ll r){
	if(l >= r) return 0;

	// split into B segs
	ll B = n;
	ll len = r-l+1;
	ll cnt1 = B;
	ll cnt2 = len%B;
	cnt1 -= cnt2;

	vector<pll> segs;
	ll ptr = l;

	rep1(i,cnt1){
		if(len >= B){
			segs.pb({ptr,ptr+len/B-1});
		}
		ptr += len/B;
	}

	rep1(i,cnt2){
		segs.pb({ptr,ptr+ceil2(len,B)-1});
		ptr += ceil2(len,B);
	}

	// cout << "l = " << l << endl;
	// cout << "r = " << r << endl;
	// for(auto [lx,rx] : segs){
	// 	cout << lx << " " << rx << endl;
	// }

	assert(ptr == r+1);

	vector<pll> seg_vals;
	ll ans = 0;

	rep(i,sz(segs)){
		ll mn,mx;
		auto [lx,rx] = segs[i];
		MinMax(lx,rx,&mn,&mx);
		seg_vals.pb({mn,mx});
	}

	while(!segs.empty() and seg_vals.back().ff == -1){
		segs.pop_back();
		seg_vals.pop_back();
	}

	reverse(all(segs));
	reverse(all(seg_vals));

	while(!segs.empty() and seg_vals.back().ff == -1){
		segs.pop_back();
		seg_vals.pop_back();
	}

	reverse(all(segs));
	reverse(all(seg_vals));

	ll last_active = -1;

	for(auto [mn,mx] : seg_vals){
		if(mn != -1){
			if(last_active != -1){
				amax(ans,mn-last_active);
			}
			last_active = mx;
		}
	}

	if(count(all(seg_vals),make_pair<ll>(-1ll,-1ll)) == 0){
		ll lx = segs[0].ff;
		ll rx = segs.back().ss;
		amax(ans,go(lx,rx));
	}

	return ans;
}

long long findGap(int T, int n_)
{
	n = n_;
	return go(0,1e18);
}
# Verdict Execution time Memory Grader output
1 Runtime error 520 ms 524288 KB Execution killed with signal 9
2 Incorrect 1 ms 2392 KB Output isn't correct
3 Incorrect 1 ms 2392 KB Output isn't correct
4 Incorrect 1 ms 2392 KB Output isn't correct
5 Runtime error 826 ms 524288 KB Execution killed with signal 9
6 Incorrect 1 ms 2392 KB Output isn't correct
7 Incorrect 1 ms 2392 KB Output isn't correct
8 Incorrect 1 ms 2392 KB Output isn't correct
9 Incorrect 1 ms 2392 KB Output isn't correct
10 Incorrect 1 ms 2392 KB Output isn't correct
11 Incorrect 1 ms 2392 KB Output isn't correct
12 Incorrect 1 ms 2392 KB Output isn't correct
13 Incorrect 1 ms 2392 KB Output isn't correct
14 Incorrect 1 ms 2592 KB Output isn't correct
15 Execution timed out 3019 ms 524288 KB Time limit exceeded
16 Incorrect 11 ms 3720 KB Output isn't correct
17 Incorrect 11 ms 3728 KB Output isn't correct
18 Incorrect 11 ms 3728 KB Output isn't correct
19 Incorrect 11 ms 3728 KB Output isn't correct
20 Incorrect 13 ms 5268 KB Output isn't correct
21 Incorrect 44 ms 7496 KB Output isn't correct
22 Incorrect 50 ms 7500 KB Output isn't correct
23 Incorrect 43 ms 7424 KB Output isn't correct
24 Incorrect 43 ms 7312 KB Output isn't correct
25 Execution timed out 3034 ms 309644 KB Time limit exceeded
26 Incorrect 45 ms 7436 KB Output isn't correct
27 Incorrect 44 ms 7392 KB Output isn't correct
28 Incorrect 44 ms 7496 KB Output isn't correct
29 Incorrect 42 ms 7400 KB Output isn't correct
30 Incorrect 56 ms 13712 KB Output isn't correct
31 Incorrect 1 ms 2392 KB Output isn't correct
32 Incorrect 1 ms 2392 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Runtime error 531 ms 524288 KB Execution killed with signal 9
2 Correct 1 ms 2392 KB Output is correct
3 Correct 1 ms 2392 KB Output is correct
4 Correct 1 ms 2392 KB Output is correct
5 Runtime error 826 ms 524288 KB Execution killed with signal 9
6 Correct 1 ms 2392 KB Output is correct
7 Correct 1 ms 2392 KB Output is correct
8 Correct 1 ms 2636 KB Output is correct
9 Correct 1 ms 2392 KB Output is correct
10 Partially correct 1 ms 2392 KB Partially correct
11 Correct 1 ms 2392 KB Output is correct
12 Correct 2 ms 2492 KB Output is correct
13 Correct 1 ms 2392 KB Output is correct
14 Correct 1 ms 2392 KB Output is correct
15 Execution timed out 3087 ms 524288 KB Time limit exceeded
16 Correct 11 ms 3728 KB Output is correct
17 Correct 12 ms 3728 KB Output is correct
18 Correct 12 ms 3732 KB Output is correct
19 Correct 11 ms 3728 KB Output is correct
20 Partially correct 13 ms 5228 KB Partially correct
21 Correct 44 ms 7308 KB Output is correct
22 Correct 42 ms 7300 KB Output is correct
23 Correct 43 ms 7500 KB Output is correct
24 Correct 43 ms 7304 KB Output is correct
25 Execution timed out 3072 ms 313668 KB Time limit exceeded
26 Correct 43 ms 7316 KB Output is correct
27 Correct 44 ms 7296 KB Output is correct
28 Correct 43 ms 7312 KB Output is correct
29 Correct 44 ms 7308 KB Output is correct
30 Partially correct 57 ms 13692 KB Partially correct
31 Correct 1 ms 2392 KB Output is correct
32 Correct 1 ms 2392 KB Output is correct