# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
601932 | 2022-07-22T12:39:20 Z | PiejanVDC | 정렬하기 (IOI15_sorting) | C++17 | 1000 ms | 468 KB |
#include "sorting.h" #include <bits/stdc++.h> using namespace std; int findSwapPairs(int n, int s[], int m, int X[], int Y[], int P[], int Q[]) { auto sorted = [&] (vector<int>&v) -> bool { for(int i = 0 ; i < n ; i++) if(v[i] != i) return 0; return 1; }; int ans; int l = 0, r = m; while(l <= r) { int T = (l+r)/2; //cout << "T : " << T << '\n'; vector<int>c(n); for(int i = 0 ; i < n ; i++) c[i]= i; for(int i = 0 ; i < T ; i++) swap(c[X[i]], c[Y[i]]); vector<int>go(n, -1); for(int i = 0 ; i < n ; i++) { //assert(go[c[i]] == -1); go[c[i]] = i; } vector<int>v(n); auto S = [&] (int W) { for(int i = 0 ; i < n ; i++) if(v[i] == W) return i; //assert(0); }; vector<int>P_(m), Q_(m); for(int i = 0 ; i < n ; i++) v[i] = s[i]; int cnt = 0; for(int i = 0 ; i < T ; i++) { cnt++; swap(v[X[i]], v[Y[i]]); swap(go[X[i]], go[Y[i]]); int j; for(j = 0 ; j < n ; j++) { if(go[j] != v[j]) { int p = S(go[j]); P_[cnt-1] = p; Q_[cnt-1] = j; swap(v[p], v[j]); break; } } /*cout << " " << i << '\n'; cout << " "; for(auto z : v) cout << z << ' '; cout << '\n';*/ if(j == n) P_[cnt-1] = 0, Q_[cnt-1] = 0; // do the swappings // look for first element not correct in go } if(sorted(v)) { r = T; for(int i_ = 0 ; i_ < cnt ; i_++) P[i_] = P_[i_], Q[i_] = Q_[i_]; ans = cnt; } } return ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1065 ms | 212 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1065 ms | 212 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1083 ms | 212 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1065 ms | 212 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1085 ms | 468 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1085 ms | 468 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |