Submission #1085692

#TimeUsernameProblemLanguageResultExecution timeMemory
1085692damamilaSpiral (BOI16_spiral)C++14
0 / 100
192 ms262144 KiB
#include <bits/stdc++.h> using namespace std; #define int long long const int mod = 1e9+7; signed main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n, q; cin >> n >> q; int N = 2*n+1; vector<vector<int>> num(N, vector<int> (N)); int x = n, y = n, val = 1; num[x][y] = val; for (int i = 1; i <= n+1; i++) { //calculate grid numbers for (int j = 0; j < i; j++) { x++; val++; num[x][y] = val; } for (int j = 0; j < i; j++) { y++; val++; num[x][y] = val; } i++; for (int j = 0; j < i; j++) { x--; val++; num[x][y] = val; } for (int j = 0; j < i; j++) { y--; val++; num[x][y] = val; } } while (x+1 < N) { x++; val++; num[x][y] = val; } for (int i = 0; i < q; i++) { //do queries int x1, x2, y1, y2; cin >> x1 >> y1 >> x2 >> y2; x1 += n; y1 += n; x2 += n; y2 += n; int ans = 0; for (int j = x1; j <= x2; j++) { for (int k = y1; k <= y2; k++) { ans += num[j][k]; ans = ans%mod; } } cout << ans << "\n"; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...