#include<bits/stdc++.h>
using namespace std;
using ll = long long;
ll n, ans, p, j, s;
void Dfs(ll a[], ll moves) {
if ( moves > ans) return;
s = n;
for (ll i = 1; i <= n; i ++) {
if ( a[i] == (n - i + 1)) s --;
}
moves = min(moves, ans);
for (ll i = 1; i <= n; i ++) {
reverse(a + i,a +n + 1);
Dfs(a, moves + 1);
reverse(a + i, a + n + 1);
}
return ;
}
int main() {
ll i, t, r;
cin >> t;
while ( t --) {
cin >> n;
ans = 2 * n;
ll a[n + 2];
vector < pair < ll, ll > > v;
for (i = 1; i <= n; i ++) {
cin >> a[i];
v.push_back(make_pair(a[i], i));
}
sort (v.begin(), v.end());
for ( i = 0; i < n; i ++) {
a[v[i].second ] = i + 1;
}
Dfs(a, 0);
cout <<ans << endl;
}
}
Compilation message
pancake.cpp: In function 'int main()':
pancake.cpp:22:11: warning: unused variable 'r' [-Wunused-variable]
22 | ll i, t, r;
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1080 ms |
212 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1062 ms |
212 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1033 ms |
212 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1073 ms |
276 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1068 ms |
272 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |