# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
386927 | 2021-04-07T16:14:04 Z | FatihSolak | Nuclearia (CEOI15_nuclearia) | C++17 | 1000 ms | 237676 KB |
#include <bits/stdc++.h> using namespace std; int main(){ #ifdef Local freopen("in.txt","r",stdin); freopen("out.txt","w",stdout); #endif bool swp = 0; int w,h; scanf("%d %d",&w,&h); if(w < h){ swp = 1; swap(w,h); } long long arr[h+5][2*h+w+5]; long long pre[h+5][2*h+w+5]; for(int i=0;i<h+5;i++){ for(int j = 0;j<2*h+w+5;j++){ arr[i][j] = pre[i][j] = 0; } } int n; scanf("%d ",&n); for(int i=0;i<n;i++){ int x,y,a,b; scanf("%d %d %d %d",&x,&y,&a,&b); if(swp)swap(x,y); x += 2*h; for(int i=1;i<=h;i++){ int dif = abs(y-i); if(dif * b > a)continue; arr[i][max(1,x-dif+1)] -= b; arr[i][max(1,x-(a/b))] += b; arr[i][max(1,x-(a/b))] += a - b*(x - max(1,x-(a/b)) + 1); arr[i][max(1,x-(a/b)) + 1] -= a - b*(x - max(1,x-(a/b)) + 1); arr[i][min(w+2*h+1,x+dif+1)] -= b; arr[i][min(w+2*h+1,x+(a/b)+1)] += b; arr[i][min(w+2*h+1,x+(a/b)+1)] -= a%b; } } for(int i=1;i<=h;i++){ for(int j=1;j<=w+2*h;j++){ arr[i][j] += arr[i][j-1]; } for(int j=1;j<=w+2*h;j++){ arr[i][j] += arr[i][j-1]; //cout << arr[i][j] << " "; } //cout << endl; } for(int i=1;i<=h;i++){ for(int j=2*h+1;j<=w+2*h;j++){ pre[i][j] = pre[i-1][j] + pre[i][j-1] - pre[i-1][j-1]+arr[i][j]; } } int q; scanf("%d",&q); while(q--){ int x1,y1,x2,y2; scanf("%d %d %d %d",&x1,&y1,&x2,&y2); if(!swp)swap(x1,y1),swap(x2,y2); y1 += 2*h; y2 += 2*h; long double cnt = (x2-x1+1) * (y2 -y1+1); long long x = ((pre[x2][y2] - pre[x2][y1-1] - pre[x1 -1][y2] + pre[x1-1][y1-1])/cnt + 0.5); printf("%lld\n",x); } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 161 ms | 235244 KB | Output is correct |
2 | Correct | 98 ms | 2796 KB | Output is correct |
3 | Correct | 85 ms | 2284 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 177 ms | 235116 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 56 ms | 47724 KB | Output is correct |
2 | Incorrect | 87 ms | 2668 KB | Output isn't correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 52 ms | 49388 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 308 ms | 237376 KB | Output is correct |
2 | Correct | 102 ms | 3040 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 196 ms | 96620 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 191 ms | 50156 KB | Output is correct |
2 | Incorrect | 94 ms | 3052 KB | Output isn't correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 172 ms | 57452 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 405 ms | 237676 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 427 ms | 237676 KB | Output isn't correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1098 ms | 47852 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1097 ms | 71148 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1059 ms | 41580 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1103 ms | 47724 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |