# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
46509 | ikura355 | Cultivation (JOI17_cultivation) | C++14 | 2 ms | 740 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
//30 pts.
#include<bits/stdc++.h>
using namespace std;
#define pii pair<int,int>
#define X first
#define Y second
const int maxn = 300 + 5;
const int inf = 1e9;
int n,R,C;
pii p[maxn];
vector<int> have[45];
int main() {
scanf("%d%d%d",&R,&C,&n);
for(int i=1;i<=n;i++) scanf("%d%d",&p[i].X,&p[i].Y);
//fix up and down (R<=40)
int ans = inf;
for(int up=0;up<=R;up++) {
for(int down=0;down<=R;down++) {
for(int row=1;row<=R;row++) have[row].clear();
for(int x=1;x<=n;x++) {
for(int i=max(1,p[x].X-up);i<=min(R,p[x].X+down);i++) {
have[i].push_back(p[x].Y);
}
}
int mx = 0;
for(int row=1;row<=R;row++) {
if(have[row].size()==0) {
mx = inf;
break;
}
sort(have[row].begin(),have[row].end());
int use = (*have[row].begin() - 1) + (C - *have[row].rbegin());
int gap = 0;
for(int i=1;i<have[row].size();i++) gap = max(gap, have[row][i] - have[row][i-1] - 1);
mx = max(mx, use + max(0, gap-use));
}
ans = min(ans, mx + up + down);
}
}
printf("%d",ans);
}
Compilation message (stderr)
# | 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... |