# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
895186 | hariaakas646 | Group Photo (JOI21_ho_t3) | C++14 | 0 ms | 344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define scd(t) scanf("%d", &t)
#define sclld(t) scanf("%lld", &t);
#define forr(i, l, r) for(int i=l; i<r; i++)
#define frange(i, l) forr(i, 0, l)
#define pb push_back
#define mp make_pair
#define f first
#define s second
#define all(x) x.begin(), x.end()
typedef vector<int> vi;
typedef pair<int, int> pii;
typedef vector<pii> vii;
typedef long long lli;
typedef vector<vi> vvi;
typedef vector<lli> vll;
typedef vector<bool> vb;
void usaco() {
freopen("/media/hariaakash646/785EF1075EF0BF46/CompetitiveProgramming/input.in", "r", stdin);
}
int main() {
// usaco();
int n;
scd(n);
vi vec(n);
vi pos(n);
frange(i, n) {
scd(vec[i]);
vec[i]--;
pos[vec[i]] = i;
}
vector<vi> dp(1<<n, vi(n, 1e9));
// forr(i, 1, 1<<n) {
// frange(j, n) {
// if(i & (1<<j)) {
// if(__builtin_popcount(i) == 1) dp[i][j] = pos[j];
// int k = i ^ (1<<j);
// frange(l, n) {
// if(k & (1<<l)) {
// if(vec[j] + 2 > vec[l]) {
// dp[i][j] = min(dp[i][j], dp[k][l] + abs(pos[j] - __builtin_popcount(k)));
// }
// }
// }
// }
// }
// }
sort(all(vec));
int mi = 1e9;
do {
int tot = 0;
frange(i, n) tot += abs(vec[i] - pos[vec[i]]);
mi = min(mi, tot);
}
while(next_permutation(all(vec)));
printf("%d\n", mi/2);
}
컴파일 시 표준 에러 (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... |