# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1100616 |
2024-10-14T10:36:44 Z |
vjudge1 |
Swap (BOI16_swap) |
C++ |
|
1 ms |
336 KB |
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
vector<int> a(n);
for(auto &x : a)
{
cin >> x;
}
for(int k = 2; k < n; k++)
{
for(int i = k; i > 1 && a[i] < a[i / 2]; i /= 2)
{
swap(a[i], a[i / 2]);
}
}
for(int i = 0; i < n; i++)
{
cout << a[i] << " ";
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |