結果
問題 | No.490 yukiソート |
ユーザー |
|
提出日時 | 2017-03-10 22:26:39 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 14 ms / 2,000 ms |
コード長 | 475 bytes |
コンパイル時間 | 683 ms |
コンパイル使用メモリ | 70,032 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 09:56:51 |
合計ジャッジ時間 | 1,588 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 34 |
ソースコード
#include <iostream>#include <vector>#define repeat(i,n) for (int i = 0; (i) < int(n); ++(i))using namespace std;int main() {int n; cin >> n;vector<int> a(n); repeat (i,n) cin >> a[i];repeat (i,2*n-3) {repeat (p,i+1) {int q = i - p;if (0 <= p and p < q and q <= n-1) {if (a[p] > a[q]) swap(a[p], a[q]);}}}repeat (i,n) cout << a[i] << ' ';cout << endl;return 0;}