# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
908951 | vjudge1 | Pinball (JOI14_pinball) | C++17 | 715 ms | 94280 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define ll long long
using namespace std;
ll inf=1e18;
struct device{
ll i, a, b, c, d;
ll dp[2]={inf, inf};
bool operator<(const device B)const{
return b<B.b;
}
};
struct segtree{
segtree *left, *right;
int l, r, mid;
ll mn=inf;
segtree(int x, int y){
l=x;
r=y;
mid=(l+r)/2;
if(l==r) return;
left = new segtree(l,mid);
right = new segtree(mid+1,r);
}
void update(int x, ll dp, bool force=false){
if(x<l || r<x) return;
if(x<=l && r<=x){
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |