# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
965739 | Tuanlinh123 | Bitaro, who Leaps through Time (JOI19_timeleap) | C++17 | 2558 ms | 283612 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
#define pll pair<ll, ll>
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define ld long double
#define sz(a) ((ll)(a).size())
using namespace std;
const ll maxn=300005, inf=1e9;
ll l[maxn], r[maxn];
namespace SegTree
{
struct seg
{
ll l, r, a, b, c, d;
seg(){}
seg(ll l, ll r, ll a, ll b, ll c, ll d): l(l), r(r), a(a), b(b), c(c), d(d){}
bool operator < (const seg &o) {return l<o.l;}
bool operator == (const seg &o) {return tie(a, b, c, d)==tie(o.a, o.b, o.c, o.d);}
bool operator != (const seg &o) {return !((*this)==o);}
seg operator + (const seg &o)
{
seg ans;
if (a==0 && o.l<=b && b<=o.r) ans.l=l, ans.r=r;
else if (!a) ans.l=1, ans.r=0;
else ans.l=max(l, o.l-b), ans.r=min(r, o.r-b);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |