結果
問題 | No.366 ロボットソート |
ユーザー | moti |
提出日時 | 2016-04-29 22:29:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,459 bytes |
コンパイル時間 | 1,311 ms |
コンパイル使用メモリ | 132,320 KB |
実行使用メモリ | 468,756 KB |
最終ジャッジ日時 | 2024-10-04 18:08:24 |
合計ジャッジ時間 | 4,892 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,632 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include <iostream> #include <algorithm> #include <cmath> #include <vector> #include <complex> #include <queue> #include <deque> #include <set> #include <map> #include <unordered_set> #include <unordered_map> #include <iomanip> #include <assert.h> #include <array> #include <cstdio> #include <cstring> #include <random> #include <functional> #include <numeric> #include <bitset> using namespace std; struct before_main{before_main(){cin.tie(0); ios::sync_with_stdio(false);}} before_main; #define REP(i,a,b) for(int i=a;i<(int)b;i++) #define rep(i,n) REP(i,0,n) #define all(c) (c).begin(), (c).end() #define zero(a) memset(a, 0, sizeof a) #define minus(a) memset(a, -1, sizeof a) template<class T1, class T2> inline bool minimize(T1 &a, T2 b) { return b < a && (a = b, 1); } template<class T1, class T2> inline bool maximize(T1 &a, T2 b) { return a < b && (a = b, 1); } typedef long long ll; int const inf = 1<<29; int main() { int N, K; cin >> N >> K; vector<int> v(N); rep(i, N) { cin >> v[i]; } queue<pair<int, vector<int>>> q; q.emplace(0, v); set<vector<int>> st = {v}; while(!q.empty()) { int cost; vector<int> p; tie(cost, p) = q.front(); q.pop(); auto pp = p; sort(all(pp)); if(pp == p) { cout << cost << endl; return 0; } rep(i, N-K) { swap(p[i], p[i+K]); if(st.count(p)) { continue; } q.emplace(cost+1, p); swap(p[i], p[i+K]); } } cout << -1 << endl; return 0; }