# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
341126 | 2020-12-29T03:25:22 Z | beksultan04 | UFO (IZhO14_ufo) | C++14 | 2000 ms | 8940 KB |
#include <bits/stdc++.h> using namespace std; //#define int long long #define pii pair<int,int> #define OK puts("OK"); #define NO puts("NO"); #define YES puts("YES"); #define fr first #define sc second #define ret return #define scanl(a) scanf("%lld",&a); #define scanll(a,b) scanf("%lld %lld",&a, &b); #define scanlll(a,b,c) scanf("%lld %lld %lld",&a,&b,&c); #define scan1(a) scanf("%d",&a); #define scan2(a,b) scanf("%d %d",&a, &b); #define scan3(a,b,c) scanf("%d %d %d",&a,&b,&c); #define all(s) s.begin(),s.end() #define allr(s) s.rbegin(),s.rend() #define pb push_back #define sz(v) (int)v.size() #define endi puts(""); #define eps 1e-12 const int N = 1e6+12,INF=1e9+7; main(){ int n,m,i,j,r,t,p,mx=0; vector <vector <int> > q; scan3(n,m,r) scan2(t,p) q.resize(n+1); for (i=0;i<=n;++i){ q[i].resize(m+1); for (j=0;j<=m;++j){ q[i][j]=0; } } for (i=1;i<=n;++i){ for (j=1;j<=m;++j){ scan1(q[i][j]) } } while (t--){ char ch; int x,y; cin>>ch; scan2(x,y) if (ch == 'N'){ int kanca = r; i=1; while (kanca > 0 && i <= n){ if (q[i][x] >= y){ q[i][x]--; kanca--; } i++; } } if (ch == 'E'){ int kanca = r; i=m; while (kanca > 0 && i >0 ){ if (q[x][i] >= y){ q[x][i]--; kanca--; } i--; } } if (ch == 'S'){ int kanca = r; i=n; while (kanca > 0 && i > 0){ if (q[i][x] >= y){ q[i][x]--; kanca--; } i--; } } if (ch == 'W'){ int kanca = r; i=1; while (kanca > 0 && i <=m ){ if (q[x][i] >= y){ q[x][i]--; kanca--; } i++; } } } for (i=1;i<=n;++i){ for (j=1;j<=m;++j){ q[i][j] = q[i-1][j]+q[i][j-1]-q[i-1][j-1]+q[i][j]; } } for (i=1;i<=n;++i){ for (j=1;j<=m;++j){ int ans=0,x=i,y=j; ans+=q[x][y]; ans+=q[max(x-p,0)][max(y-p,0)]; ans-=q[max(x-p,0)][y]; ans-=q[x][max(y-p,0)]; mx = max(ans,mx); } } cout <<mx; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Correct | 0 ms | 364 KB | Output is correct |
3 | Correct | 1 ms | 364 KB | Output is correct |
4 | Correct | 8 ms | 364 KB | Output is correct |
5 | Correct | 23 ms | 492 KB | Output is correct |
6 | Correct | 112 ms | 2284 KB | Output is correct |
7 | Execution timed out | 2086 ms | 4588 KB | Time limit exceeded |
8 | Execution timed out | 2050 ms | 4588 KB | Time limit exceeded |
9 | Execution timed out | 2078 ms | 4460 KB | Time limit exceeded |
10 | Execution timed out | 2081 ms | 4588 KB | Time limit exceeded |
11 | Execution timed out | 2040 ms | 4588 KB | Time limit exceeded |
12 | Execution timed out | 2045 ms | 4588 KB | Time limit exceeded |
13 | Execution timed out | 2081 ms | 8940 KB | Time limit exceeded |
14 | Execution timed out | 2094 ms | 4588 KB | Time limit exceeded |
15 | Execution timed out | 2063 ms | 4588 KB | Time limit exceeded |
16 | Execution timed out | 2098 ms | 4588 KB | Time limit exceeded |
17 | Execution timed out | 2083 ms | 8940 KB | Time limit exceeded |
18 | Execution timed out | 2062 ms | 8812 KB | Time limit exceeded |
19 | Execution timed out | 2082 ms | 4972 KB | Time limit exceeded |
20 | Execution timed out | 2077 ms | 8172 KB | Time limit exceeded |