結果
問題 | No.397 NO MORE KADOMATSU |
ユーザー | masa |
提出日時 | 2016-07-15 22:43:09 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 765 bytes |
コンパイル時間 | 839 ms |
コンパイル使用メモリ | 74,272 KB |
実行使用メモリ | 25,232 KB |
平均クエリ数 | 36.83 |
最終ジャッジ日時 | 2024-07-17 00:03:50 |
合計ジャッジ時間 | 2,364 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 18 |
ソースコード
#include <iostream> #include <cstdio> #include <vector> #include <algorithm> #include <utility> #include <string> using namespace std; void show(vector<int> &v) { for (auto e : v) { cout << e << " "; } cout << endl; } int main() { int n, dummy; cin >> n; vector<int> a(n, 0); for (int i = 0; i < n; i++) { cin >> a[i]; } vector<int> u, v; // show(a); for (int i = 0; i < n; i++) { int mini_idx = i; for (int j = i; j < n; j++) { if (a[j] < a[mini_idx]) { mini_idx = j; } } if (mini_idx != i) { u.emplace_back(i); v.emplace_back(mini_idx); swap(a[i], a[mini_idx]); // show(a); } } cout << u.size() << endl; for (int i = 0; i < u.size(); i++) { cout << u[i] << " " << v[i] << endl; } cin >> dummy; return 0; }