Submission #381233

# Submission time Handle Problem Language Result Execution time Memory
381233 2021-03-24T20:56:22 Z SavicS Divide and conquer (IZhO14_divide) C++14
0 / 100
2 ms 640 KB
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <bits/stdc++.h>

#define fi first
#define se second
#define pb push_back
#define sz(a) (int)a.size()
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define ff(i,a,b) for(int i=a;i<=b;i++)
#define fb(i,b,a) for(int i=b;i>=a;i--)

using namespace std;
using namespace __gnu_pbds;
typedef long long ll;
typedef pair<int,int> pii;
const int maxn = 100005;
const int inf = 1e9 + 5;

template<typename T>
using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;

// os.order_of_key(k) the number of elements in the os less than k
// *os.find_by_order(k)  print the k-th smallest number in os(0-based)

int n;
array<int,3> niz[maxn];

int G[maxn];
int E[maxn];

ll bor[4*maxn];
void update(int v, int tl, int tr, int poz, ll vre){
	if(tl == tr){
		bor[v] = vre;
		return;
	}	
	int mid = (tl + tr) / 2;
	if(poz <= mid)update(v * 2, tl, mid, poz, vre);
	else update(v * 2 + 1, mid + 1, tr, poz, vre);
	bor[v] = max(bor[v * 2], bor[v * 2 + 1]);
}

int k_th(int v, int tl, int tr, int x){
	if(tl == tr)return tl;
	int mid = (tl + tr) / 2;
	if(bor[v * 2 + 1] >= x)k_th(v * 2 + 1, mid + 1, tr, x);
	else k_th(v * 2, tl, mid, x);
}

int main()
{
    ios::sync_with_stdio(false);
    cout.tie(nullptr);
    cin.tie(nullptr);
	cin >> n;
	ff(i,1,n)ff(j,0,2)cin >> niz[i][j];
	
	ff(i,1,n){
		G[i] = G[i - 1] + niz[i][1];
		E[i] = E[i - 1] + niz[i][2];
		update(1,1,n,i,E[i] - niz[i][0]);
	}
	
	int rez = 0;
	ff(i,1,n){
		int poz = k_th(1,1,n,E[i - 1] - niz[i][0]);
		rez = max(rez, G[poz] - G[i - 1]);		
	}

	cout << rez << endl;
	return 0;
}
/**



// probati bojenje sahovski ili slicno

**/

Compilation message

divide.cpp: In function 'int k_th(int, int, int, int)':
divide.cpp:50:1: warning: control reaches end of non-void function [-Wreturn-type]
   50 | }
      | ^
# Verdict Execution time Memory Grader output
1 Correct 1 ms 364 KB Output is correct
2 Runtime error 2 ms 640 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 364 KB Output is correct
2 Runtime error 2 ms 640 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 364 KB Output is correct
2 Runtime error 2 ms 640 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -