이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;;
LL r, c, n;
vector<pair<LL,LL> > seeds;
const LL INF = 3100100100;
LL best = INF;
void tryx(LL x){
if(x < 0){
return;
}
vector<LL> stuff[r + x];
for(pair<LL,LL> z : seeds){
for(LL j = 0; j <= x; j++){
stuff[j + z.first].push_back(z.second);
}
}
vector<LL> up(r+x, 0);
vector<LL> down(r+x, 0);
vector<LL> tot(r+x, 0);
for(LL j = 0; j < r+x; j++){
vector<LL> grass = stuff[j];
sort(grass.begin(), grass.end());
if(grass.size() == 0){
up[j] = down[j] = tot[j] = INF;
} else {
up[j] = grass[0] - 0;
down[j] = c-1 - grass[grass.size()-1];
for(LL i = 0; i + 1 < grass.size(); i++){
tot[j] = max(tot[j], grass[i+1] - grass[i] - 1);
}
}
}
for(LL j = 0; j <= x; j++){
LL maxup = 0;
LL maxdown = 0;
LL maxtot = 0;
for(LL i = j; i < j + r; i++){
maxup = max(maxup, up[i]);
maxdown = max(maxdown, down[i]);
maxtot = max(maxtot, tot[i]);
}
best = min(best, max(maxup + maxdown, maxtot) + x);
}
}
int main(){
cin >> r >> c >> n;
for(LL i = 0; i < n; i++){
LL s, e;
cin >> s >> e;
s--; e--;
seeds.push_back({s,e});
}
sort(seeds.begin(), seeds.end());
for(int i = 0; i < n; i++){
for(int j = 0; j < n; j++){
tryx(seeds[i].first + r-1 - seeds[j].first);
}
}
cout << best << '\n';
}
컴파일 시 표준 에러 (stderr) 메시지
cultivation.cpp: In function 'void tryx(LL)':
cultivation.cpp:30:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(LL i = 0; i + 1 < grass.size(); i++){
~~~~~~^~~~~~~~~~~~~~
# | 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... |