# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1071383 | Plurm | Cultivation (JOI17_cultivation) | C++11 | 1 ms | 344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int r, c;
bitset<1600> moveleft(bitset<1600> mask) {
for (int i = 0; i < r; i++)
mask[i * c] = false;
return mask >> 1;
}
bitset<1600> moveright(bitset<1600> mask) {
for (int i = 0; i < r; i++)
mask[i * c + c - 1] = false;
return mask << 1;
}
bitset<1600> moveup(bitset<1600> mask) {
for (int i = 0; i < c; i++)
mask[i] = false;
return mask >> c;
}
bitset<1600> movedown(bitset<1600> mask) {
for (int i = 0; i < c; i++)
mask[(r - 1) * c + i] = false;
return mask << c;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cin >> r >> c;
int n;
cin >> n;
vector<pair<int, int>> pts;
for (int i = 0; i < n; i++) {
int x, y;
cin >> x >> y;
pts.push_back({x, y});
}
bitset<1600> init(0);
for (auto p : pts) {
init[(p.first - 1) * c + p.second - 1] = true;
}
for (int ans = 0; ans <= 80; ans++) {
for (int p = 0; p < c && p <= ans; p++) {
for (int q = 0; q < c && q <= ans; q++) {
for (int s = 0; s < r && r <= ans; s++) {
int t = ans - p - q - s;
if (t < 0 || t >= r)
continue;
auto state = init;
for (int _ = 0; _ < p; _++)
state |= moveleft(state);
for (int _ = 0; _ < q; _++)
state |= moveright(state);
for (int _ = 0; _ < s; _++)
state |= moveup(state);
for (int _ = 0; _ < t; _++)
state |= movedown(state);
if (state.count() >= r * c) {
cout << ans << endl;
return 0;
}
state = init;
for (int _ = 0; _ < s; _++)
state |= moveup(state);
for (int _ = 0; _ < p; _++)
state |= moveleft(state);
for (int _ = 0; _ < t; _++)
state |= movedown(state);
for (int _ = 0; _ < q; _++)
state |= moveright(state);
if (state.count() >= r * c) {
cout << ans << endl;
return 0;
}
}
}
}
}
}
컴파일 시 표준 에러 (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... |