이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "seats.h"
#include "bits/stdc++.h"
using namespace std;
typedef vector<int> vi;
typedef vector<vi> vvi;
#define sz(x) (int)(x).size()
#define all(x) (x).begin(), (x).end()
int H, W;
std::vector<int> R, C;
void give_initial_chart(int _H, int _W, std::vector<int> _R, std::vector<int> _C)
{
H = _H, W = _W;
R = _R, C = _C;
}
int swap_seats(int a, int b)
{
swap(R[a], R[b]), swap(C[a], C[b]);
int rmax = R[0], rmin = R[0];
int cmax = C[0], cmin = C[0];
int ans = 0;
for (int k = 0; k < H * W; ++k)
{
rmax = max(rmax, R[k]);
rmin = min(rmin, R[k]);
cmax = max(cmax, C[k]);
cmin = min(cmin, C[k]);
int area = (rmax - rmin + 1) * (cmax - cmin + 1);
if (area == k + 1)
++ans;
assert(area >= k + 1);
}
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... |