# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
293215 | XmtosX | 비밀 (JOI14_secret) | C++17 | 502 ms | 8824 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>;
#include "secret.h"
using namespace std;
#define LL pos*2+1
#define RR pos*2+2
const int NN=1e3+3;
int seg[NN*4],a[NN],n,l,r;
void build (int st,int en,int pos)
{
if (st==en)
{
seg[pos]=a[st];
return;
}
int mid= (st+en)/2;
build(st,mid,LL);
build(mid+1,en,RR);
seg[pos]=Secret(seg[LL],seg[RR]);
}
int query(int st,int en,int pos)
{
if (st>=l&&en<=r)
return seg[pos];
int mid=(st+en)/2;
int p1=-1,p2=-1;
if (!(st>r||mid<l))
p1=query(st,mid,LL);
if (!(mid+1>r||en<l))
p2=query(mid+1,en,RR);
if (p1==-1)
return p2;
if (p2==-1)
return p1;
return Secret(p1,p2);
}
void Init(int N, int A[])
{
n=N;
for (int i=0;i<n;i++)
a[i]=A[i];
if (Secret(20,13847)==20+13847)
assert(0);
if (Secret(20,13847)==20|13847)
assert(0);
if (Secret(20,13847)==20^13847)
assert(0);
if (Secret(20,13847)==20*13847)
assert(0);
build(0,n-1,0);
}
int Query(int L, int R)
{
l=L;
r=R;
int ans=query(0,n-1,0);
return ans;
}
/*
8
1 4 7 2 5 8 3 6
4
0 3
1 7
5 5
2 4
*/
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |