結果
問題 | No.490 yukiソート |
ユーザー |
|
提出日時 | 2018-03-07 03:51:55 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 11 ms / 2,000 ms |
コード長 | 571 bytes |
コンパイル時間 | 395 ms |
コンパイル使用メモリ | 55,796 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 14:14:26 |
合計ジャッジ時間 | 1,507 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 34 |
ソースコード
#include <iostream>void sort(int n, int* a) {if (n < 3) return;for (int i = 1; i < 2 * n - 3; ++i) {for (int p = 0; p <= n - 1; ++p) {int q = i - p;if (a[p] > a[q] && q <= n - 1 && p < q) {int tmp = a[p];a[p] = a[q];a[q] = tmp;}}}}int main () {std::cin.tie(0);std::ios::sync_with_stdio(false);int n;std::cin >> n;int *a = new int[n];for(int i = 0; i < n; ++i) {std::cin >> a[i];}sort(n, a);for(int i = 0; i < n; ++i) {if (i) std::cout << " ";std::cout << a[i];}std::cout << std::endl;}