# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
509062 | ITO | Group Photo (JOI21_ho_t3) | C++11 | 552 ms | 165260 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int fr[5001][5001], pa[5001][5001];
int main() {
int n, a[5001], h, b[5001], x = 0, y, c = 0;
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> h;
a[h] = i;
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
fr[i][j] = fr[i][j - 1];
if (a[j] < a[i]) {
fr[i][j]++;
}
}
}
for (int i = 1; i <= n; i++) {
pa[i][i] = fr[i][n] - fr[i][i];
for (int j = i + 1; j <= n; j++) {
pa[i][j] = pa[i][j - 1] + fr[j][n] - fr[j][j] - (j - i) + (fr[j][j] - fr[j][i - 1]) * 2;
}
}
for (int i = n; i > 0; i--) {
for (int j = i; j < n; j++) {
pa[i][n] = min(pa[i][n], pa[i][j] + pa[j + 1][n]);
}
}
cout << pa[1][n] << '\n';
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... |