This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include "aliens.h"
using namespace std;
const int nax = 102;
const long long INF = 1e18;
int g[nax][nax];
bool taken[nax][nax];
long long take_photos(int n, int m, int k, vector<int> r, vector<int> c) {
for(int i=0; i<n; ++i) {
g[r[i]][c[i]] = 1;
}
long long ans = 0;
for(int i=0; i<nax; ++i) {
int mx = 0;
for(int j=i; j<nax; ++j) {
if(g[i][j]) mx = max(mx, j-i+1);
if(g[j][i]) mx = max(mx, j-i+1);
}
for(int x=i; x<i+mx; ++x) {
for(int y=i; y<i+mx; ++y) {
g[x][y] = 0;
if(!taken[x][y]) ++ans;
taken[x][y] = true;
}
}
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |