結果
問題 | No.366 ロボットソート |
ユーザー | 👑 CleyL |
提出日時 | 2020-03-05 22:56:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 750 bytes |
コンパイル時間 | 711 ms |
コンパイル使用メモリ | 73,516 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-14 02:28:22 |
合計ジャッジ時間 | 1,798 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; int ans = 0; void Bsort(vector<int>::iterator f, vector<int>::iterator l){ for(auto e = f; e != l; e++){ for(auto i = l-1; i != e; i--){ auto j = i; j--; if(*i < *j){ iter_swap(i,j); ans++; } } } } int main(){ int n,k;cin>>n>>k; vector<int> A[k]; for(int i = 0; n > i; i++){ int t;cin>>t; A[i%k].push_back(t); } for(int i = 0; k > i; i++){ Bsort(A[i].begin(),A[i].end()); } int nw = -1; for(int i = 0; n > i; i++){ for(int j = 0; A[j].size() > j; j++){ if(nw > A[j][i]){ cout << -1 << endl; return 0; } nw = A[j][i]; } } cout << ans << endl; }