/ SB域 /

记录详情

Accepted

/in/foo.cc:1:0: warning: ignoring #pragma G  [-Wunknown-pragmas]
 # pragma G++ optimze(2) 
 
/in/foo.cc: In function 'int main()':
/in/foo.cc:77:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
  for (int i=1;i<=n;i++)
  ^~~
/in/foo.cc:82:3: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   for (int i=1;i<=n;i++)
   ^~~
/in/foo.cc:82:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
/in/foo.cc:85:4: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
    char opt;
    ^~~~
# 状态 耗时 内存占用
#1 Accepted 220ms 376.312 MiB
#2 Accepted 190ms 376.699 MiB
#3 Accepted 193ms 376.309 MiB
#4 Accepted 196ms 376.684 MiB
#5 Accepted 1149ms 383.684 MiB
#6 Accepted 1035ms 376.184 MiB
#7 Accepted 1583ms 380.188 MiB
#8 Accepted 1081ms 384.203 MiB
#9 Accepted 1320ms 383.703 MiB
#10 Accepted 1320ms 382.906 MiB
#11 Accepted 1299ms 384.082 MiB
#12 Accepted 1258ms 384.234 MiB
#13 Accepted 1548ms 383.117 MiB
#14 Accepted 867ms 380.781 MiB
#15 Accepted 1481ms 383.457 MiB
#16 Accepted 1469ms 382.973 MiB
#17 Accepted 1376ms 383.66 MiB
#18 Accepted 1669ms 383.211 MiB
#19 Accepted 1748ms 383.438 MiB
#20 Accepted 1576ms 383.898 MiB
#21 Accepted 1834ms 389.207 MiB
#22 Accepted 1682ms 388.453 MiB
#23 Accepted 1741ms 389.0 MiB
#24 Accepted 1818ms 388.598 MiB
#25 Accepted 1862ms 388.242 MiB

代码

# pragma G++ optimze(2) 
# include<bits/stdc++.h>
# define int long long
using namespace std;
const int MAXN=3505;
int a[MAXN][MAXN],d[MAXN][MAXN];
int n,m;
inline int read()
{
    int X=0,w=0;char c=0;
    while (!(c>='0'&&c<='9')) w|=c=='-',c=getchar();
    while ((c>='0'&&c<='9')) X=(X<<1)+(X<<3)+(c^48),c=getchar();
    return w?-X:X;
}
inline void write(int x)
{
    if (x<0) { putchar('-'); x=-x;}
    if (x>9) write(x/10);
    putchar('0'+x%10);
}
inline void writeln(int x){write(x);putchar('\n');}
struct Tree{
	int c[MAXN][MAXN];
	Tree(){ memset(c,0,sizeof(c));}
	inline void update(int x,int y,int z){
		for (int i=x;i<=n;i+=i&(-i))
		 for (int j=y;j<=m;j+=j&(-j)){
		 	c[i][j]+=z;
		 }
	}	
}T1,T2,T3,T4;
# define A (x+1)
# define B (y+1)
inline int ask(int x,int y){
	int ret=0;
	for (int i=x;i;i-=i&(-i))
	 for (int j=y;j;j-=j&(-j))
	  ret+=A*B*T1.c[i][j]-B*T2.c[i][j]-A*T3.c[i][j]+T4.c[i][j];
	return ret;  
}
inline void add(int x,int y,int val){
	T1.update(x,y,val);   T2.update(x,y,val*x);
	T3.update(x,y,val*y); T4.update(x,y,val*x*y);
}
inline void work1()
{
	int x1=read(),y1=read(),x2=read(),y2=read();
	int ans=ask(x2,y2)-ask(x2,y1-1)-ask(x1-1,y2)+ask(x1-1,y1-1);
	writeln(ans);
}
inline void work2()
{
	int x1=read(),y1=read(),x2=read(),y2=read(),d=read();
	add(x1,y1,d); add(x1,y2+1,-d);
	add(x2+1,y1,-d); add(x2+1,y2+1,d);
}
inline void work3()
{
	int x1=read(),y1=read(),x2=read(),y2=read(),d=read(); d=-d;
	add(x1,y1,d); add(x1,y2+1,-d);
	add(x2+1,y1,-d); add(x2+1,y2+1,d);
}
inline void work4()
{
	int x1=read(),y1=read();
	int x2=x1,y2=y1;
	int ans=ask(x2,y2)-ask(x2,y1-1)-ask(x1-1,y2)+ask(x1-1,y1-1);
	writeln(ans);
}
signed main()
{
	#ifdef LOCAL
		freopen("7.in","r",stdin);
		freopen("7.out","w",stdout);
	#endif
	n=read();m=read();
	for (int i=1;i<=n;i++)
	 for (int j=1;j<=m;j++) {
	 	a[i][j]=read();
		d[i][j]=a[i][j]-a[i-1][j]-a[i][j-1]+a[i-1][j-1];  
	 }
	 for (int i=1;i<=n;i++)
	  for (int j=1;j<=m;j++)
	  	add(i,j,d[i][j]);
	  char opt;
	  while (true) {
	  	cin>>opt;
	  	switch (opt) {
	  		case 'Q':work1();break;
			case 'A':work2();break;
			case 'D':work3();break;
			case 'F':work4();break;
			case 'E':goto exit;break;  	
		}
	  }
	  exit:;
	return 0;
} 

信息

递交者
类型
递交
题目
U50446 二维数列
题目数据
下载
语言
C++
递交时间
2018-11-05 13:14:37
评测时间
2018-11-05 13:18:28
评测机
分数
100
总耗时
31527ms
峰值内存
389.207 MiB