結果
問題 | No.397 NO MORE KADOMATSU |
ユーザー | moyashi_senpai |
提出日時 | 2016-07-15 23:18:53 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 2,012 bytes |
コンパイル時間 | 696 ms |
コンパイル使用メモリ | 75,280 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 102.22 |
最終ジャッジ日時 | 2024-07-17 00:07:24 |
合計ジャッジ時間 | 2,444 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
25,220 KB |
testcase_01 | AC | 25 ms
24,836 KB |
testcase_02 | AC | 26 ms
25,220 KB |
testcase_03 | AC | 25 ms
25,220 KB |
testcase_04 | AC | 24 ms
24,836 KB |
testcase_05 | AC | 25 ms
25,220 KB |
testcase_06 | AC | 25 ms
24,580 KB |
testcase_07 | AC | 24 ms
24,836 KB |
testcase_08 | AC | 24 ms
24,836 KB |
testcase_09 | AC | 25 ms
24,580 KB |
testcase_10 | AC | 23 ms
25,476 KB |
testcase_11 | AC | 25 ms
25,220 KB |
testcase_12 | AC | 25 ms
24,964 KB |
testcase_13 | AC | 25 ms
24,580 KB |
testcase_14 | AC | 25 ms
25,220 KB |
testcase_15 | AC | 24 ms
24,836 KB |
testcase_16 | AC | 24 ms
25,208 KB |
testcase_17 | AC | 25 ms
25,448 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:72:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long long int’ [-Wformat=] 72 | printf("%d\n", tesu); | ~^ ~~~~ | | | | int long long int | %lld main.cpp:67:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 67 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ main.cpp:69:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 69 | scanf("%d", &a[i]); | ~~~~~^~~~~~~~~~~~~
ソースコード
#include <iostream> #include <cstdio> #include <vector> #include <cmath> #include <cstring> #include <numeric> #include <algorithm> #include <functional> #include <array> #include <map> using namespace std; #define Getsign(n) ((n > 0) - (n < 0)) typedef vector<int> Ivec; typedef pair<int, int> Pos; vector <pair<int, int>> history; long long int tesu = 0; /* 配列の要素を交換する */ void Swap(int x [], int i, int j) { int temp; temp = x[i]; x[i] = x[j]; x[j] = temp; history.push_back({i,j}); tesu++; } /* クイックソートを行う */ void QSort(int x [], int left, int right) { int i, j; int pivot; i = left; /* ソートする配列の一番小さい要素の添字 */ j = right; /* ソートする配列の一番大きい要素の添字 */ pivot = x[(left + right) / 2]; /* 基準値を配列の中央付近にとる */ while (1) { /* 無限ループ */ while (x[i] < pivot) /* pivot より大きい値が */ i++; /* 出るまで i を増加させる */ while (pivot < x[j]) /* pivot より小さい値が */ j--; /* 出るまで j を減少させる */ if (i >= j) /* i >= j なら */ break; /* 無限ループから抜ける */ Swap(x, i, j); /* x[i] と x[j]を交換 */ i++; /* 次のデータ */ j--; } if (left < i - 1) /* 基準値の左に 2 以上要素があれば */ QSort(x, left, i - 1); /* 左の配列を Q ソートする */ if (j + 1 < right) /* 基準値の右に 2 以上要素があれば */ QSort(x, j + 1, right); /* 右の配列を Q ソートする */ } int main() { int n, a[100]; scanf("%d", &n); for (int i = 0; n > i; i++) { scanf("%d", &a[i]); } QSort(a, 0, n-1); printf("%d\n", tesu); for (int i = 0; tesu > i; i++) { printf("%d %d\n", history[i].first, history[i].second); } return 0; }