# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1096821 | nvgbao08 | Triple Jump (JOI19_jumps) | C++14 | 2 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define thanchu() ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define read(n,a) for (int i=1; i<=n; i++) cin>>a[i];
#define readln(n,a,pp) for (int i=1; i<=n; i++) {cin>>a[i]; pp[a[i]]++;}
#define ull unsigned long long int
#define task "TEXT"
const long long maxn=1e6+4;
long long n,m,a[maxn+1],d=0,s[maxn+1];
void doc()
{
#ifndef ONLINE_JUDGE
freopen(task".INP", "r", stdin);
freopen(task".OUT", "w", stdout);
#endif
cin>>n;
read(n,a);
cin>>m;
}
void trau()
{
while (m--)
{
int l, r;
cin>> l >>r;
long long ma=LLONG_MIN;
for (int x=l; x<=r-2; ++x)
{
for (int y=x+1; y<=(r+x)/2; ++y)
{
for (int z=2*y-x; z<=r; ++z)
{
ma=max(ma, a[x]+a[y]+a[z]);
}
}
}
cout<<ma<<endl;
}
}
void xuly()
{
while (m--)
{
int l,r;
cin>>l>>r;
long long x=l,m_ai=a[l],ma=LLONG_MIN;
for (int y=x+1; y<=(r+x)/2; ++y)
{
for (int z=2*y-x; z<=r; ++z)
{
ma=max(ma, m_ai+a[y]+a[z]);
}
if (a[y]>=m_ai)
{
m_ai=a[y];
x=y;
}
}
cout<<ma<<endl;
}
}
signed main()
{
thanchu();
doc();
trau();
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |