이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define ll long long
#define pb push_back
#define ii pair<int,int>
const int nax=2e5+5;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
int main() {
int n;
cin>>n;
int dp[n][n];
int tab[n][n];
int a[n],b[n],h[n];
for (int i = 0; i < n; ++i)
{
cin>>h[i]>>a[i]>>b[i];
}
for (int i = 0; i < n; ++i)
{
for (int j = 0; j < n; ++j)
{
dp[i][j]=-1e9;
tab[i][j]=-1e9;
if((i+a[i]<=j&&j<=i+b[i])||(i-a[i]>=j&&i-b[i]<=j)){
if((j+a[j]<=i&&i<=j+b[j])||(j-a[j]>=i&&j-b[j]<=i)){
tab[i][j]=abs(h[i]-h[j]);
}
}
}
}
for (int i = n-1; i >=0 ; --i)
{
for (int j = i+1; j < n; ++j)
{
dp[i][j]=max(tab[i][j],max(dp[i+1][j],dp[i][j-1]));
}
}
int q;
cin>>q;
for (int i = 0; i < q; ++i)
{
int x,y;
cin>>x>>y;
x--;y--;
cout <<max(-1,dp[x][y])<<endl;
}
}
# | 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... |