結果
問題 | No.397 NO MORE KADOMATSU |
ユーザー | taba |
提出日時 | 2017-05-19 03:38:13 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 694 bytes |
コンパイル時間 | 1,331 ms |
コンパイル使用メモリ | 134,772 KB |
最終ジャッジ日時 | 2025-01-05 00:23:33 |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
ソースコード
#include <cstdio> #include <cstring> #include <cmath> #include <cassert> #include <random> #include <vector> #include <algorithm> #include <array> #include <functional> #include <utility> #include <regex> #include <tuple> #include <map> using namespace std; int main(){ int64_t n; -scanf("%ld",&n); vector<int> a(n); for(int i=0;i<n;i++){ -scanf("%d",&a[i]); } vector<array<int64_t,2>> u; for(auto it=a.begin();it<a.end();it++){ auto maxe=min_element(it,a.end()); if(it!=maxe){ u.push_back({it-a.begin(),maxe-a.begin()}); swap(*it,*maxe); } } printf("%ld\n",u.size()); for(auto i:u){ printf("%ld %ld\n",i[0],i[1]); } -scanf("%ld",&n); fflush(stdout); return 0; }