結果
問題 | No.397 NO MORE KADOMATSU |
ユーザー | aaa |
提出日時 | 2018-09-13 21:12:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,034 bytes |
コンパイル時間 | 942 ms |
コンパイル使用メモリ | 105,884 KB |
実行使用メモリ | 40,004 KB |
最終ジャッジ日時 | 2024-07-16 16:07:25 |
合計ジャッジ時間 | 7,483 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
#include <stdio.h> #include <algorithm> #include <iostream> #include <string> #include <vector> #include <functional> #include <map> #include <iomanip> #include <math.h> #include <stack> #include <queue> #include <bitset> #include <cstdlib> #include <tuple> #include <cctype> #include <ctype.h> #include <set> using namespace std; int main() { int i, j, k; int n; vector<int>a, b; vector<vector<int>>reki(0, vector<int>(2)); cin >> n; for (i = 0; i < n; i++) { int num; cin >> num; a.push_back(num); b.push_back(num); } int mainasu; cin >> mainasu; sort(b.begin(), b.end()); int u, v; for (i = 0; i < b.size(); i++) { u = i; if (b[i] != a[i]) { for (j = i; j < a.size(); j++) { if (a[j] == b[i]) { v = j; int tmp = a[u]; a[u] = a[v]; a[v] = tmp; reki.push_back({u, v}); break; } } } } cout << reki.size() << endl; for (i = 0; i < reki.size(); i++) { cout << reki[i][0] << " " << reki[i][1] << endl; } getchar(); getchar(); return 0; }