#include <iostream>
#include <stdio.h>
using namespace std;
long long int dp[1600][1600], seg[1600][6000], input[1600][1600],ans;
long long int n, si=1;
long long query(int x, int y)
{
long long int ret=0;
y=y+si-1;
while(y)
{
ret+=seg[x][y];
y/=2;
}
return ret;
}
void gang(int x, int v, int l, int r, int s, int e, int t)
{
if(l>r||e<l||r<s)
return ;
if(s<=l&&r<=e)
{
seg[x][v]+=t;
return ;
}
gang(x,v*2,l,(l+r)/2,s,e,t);
gang(x,v*2+1,((l+r)/2)+1,r,s,e,t);
}
int main()
{
//freopen("input.txt", "r", stdin);
//freopen("output.txt", "w", stdout);
long long int i, j,k,inx,iny,s,e,d;
char ina;
scanf("%lld", &n);
while(si<n)
si*=2;
for(i=1; i<=n; i++)
{
for(j=1; j<=n; j++)
{
scanf("%lld", &input[i][j]);
dp[i][j]=max(dp[i-1][j],dp[i][j-1])+input[i][j];
ans=ans+dp[i][j];
}
}
printf("%lld\n", ans);
for(k=1; k<=n; k++)
{
scanf("\n%c %lld %lld",&ina,&inx,&iny);
if(ina=='U')
{
d=1;
s=iny;
e=iny+1;
while(e<=n&&dp[inx-1][e]+query(inx-1,e)<=dp[inx][e-1]+query(inx,e-1)) e++;
gang(inx,1,1,si,s,e-1,d);
ans=ans+(e-s)*d;
for(i=inx+1; i<=n&&s<e; i++)
{
while(s<=n&&dp[i-1][s]+query(i-1,s)<=dp[i][s-1]+query(i,s-1))s++;
while(s<e&&e<=n&&dp[i-1][e]+query(i-1,e)<=dp[i][e-1]+query(i,e-1)) e++;
gang(i,1,1,si,s,e-1,d);
ans=ans+(e-s)*d;
}
}
else
{
d=-1;
s=iny;
e=iny+1;
while(e<=n&&dp[inx-1][e]+query(inx-1,e)<dp[inx][e-1]+query(inx,e-1)) e++;
gang(inx,1,1,si,s,e-1,d);
ans=ans+(e-s)*d;
for(i=inx+1; i<=n&&s<e; i++)
{
while(s<=n&&dp[i-1][s]+query(i-1,s)>dp[i][s-1]+query(i,s-1)) s++;
while(s<e&&e<=n&&dp[i][e-1]+query(i,e-1)>dp[i-1][e]+query(i-1,e))e++;
gang(i,1,1,si,s,e-1,d);
ans=ans+(e-s)*d;
}
}
printf("%lld\n", ans);
}
}
Compilation message
shell.cpp: In function 'int main()':
shell.cpp:35:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%lld", &n);
~~~~~^~~~~~~~~~~~
shell.cpp:42:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%lld", &input[i][j]);
~~~~~^~~~~~~~~~~~~~~~~~~~~~
shell.cpp:50:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("\n%c %lld %lld",&ina,&inx,&iny);
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
1912 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
390 ms |
47360 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
1912 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |