# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
474209 | 2021-09-17T11:26:44 Z | jwvg0425 | 정렬하기 (IOI15_sorting) | C++17 | 5 ms | 460 KB |
#include <stdio.h> #include <vector> #include <queue> #include <algorithm> #include <iostream> #include <string> #include <bitset> #include <map> #include <set> #include <tuple> #include <string.h> #include <math.h> #include <random> #include <functional> #include <assert.h> #include <math.h> #include "sorting.h" #define all(x) (x).begin(), (x).end() #define xx first #define yy second using namespace std; template<typename T, typename Pr = less<T>> using pq = priority_queue<T, vector<T>, Pr>; using i64 = long long int; using ii = pair<int, int>; using ii64 = pair<i64, i64>; bool sorted(vector<int> s) { for (int i = 0; i < s.size(); i++) if (s[i] != i) return false; return true; } vector<ii> solve(vector<int> s, vector<ii> r, int k) { int n = s.size(); r.resize(k); int m = r.size(); vector<ii> res; vector<int> rev(n), idx(n), pos(n); for (int j = 0; j < n; j++) pos[s[j]] = j; for (int j = 0; j < n; j++) rev[j] = j; for (int j = 0; j < m; j++) swap(rev[r[j].xx], rev[r[j].yy]); for (int j = 0; j < n; j++) idx[rev[j]] = j; int nxt = 0; for (int i = 0; i < m; i++) { swap(s[r[i].xx], s[r[i].yy]); swap(pos[s[r[i].xx]], pos[s[r[i].yy]]); int a = idx[r[i].xx], b = idx[r[i].yy]; swap(rev[a], rev[b]); swap(idx[rev[a]], idx[rev[b]]); // s[x] -> idx[x] bool f = false; while (nxt < n && !f) { int x = pos[nxt]; if (s[x] == idx[x]) { nxt++; continue; } int y = pos[idx[x]]; res.emplace_back(x, y); swap(s[x], s[y]); swap(pos[s[x]], pos[s[y]]); f = true; nxt++; } if (!f) res.emplace_back(0, 0); } if (!sorted(s)) { res.clear(); res.emplace_back(-1, -1); } return res; } int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) { vector<int> s(N); vector<ii> r(M); for (int i = 0; i < N; i++) s[i] = S[i]; for (int i = 0; i < M; i++) { r[i].xx = X[i]; r[i].yy = Y[i]; } int lo = 0, hi = M; vector<ii> res; while (lo <= hi) { int mid = (lo + hi) / 2; auto now = solve(s, r, mid); if (!now.empty() && now[0].xx == -1) { lo = mid + 1; } else { res = now; hi = mid - 1; } } for (int i = 0; i < res.size(); i++) { P[i] = res[i].xx; Q[i] = res[i].yy; } return res.size(); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 204 KB | Output is correct |
2 | Correct | 0 ms | 204 KB | Output is correct |
3 | Correct | 1 ms | 204 KB | Output is correct |
4 | Correct | 0 ms | 204 KB | Output is correct |
5 | Incorrect | 1 ms | 204 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 204 KB | Output is correct |
2 | Correct | 0 ms | 204 KB | Output is correct |
3 | Correct | 1 ms | 204 KB | Output is correct |
4 | Correct | 0 ms | 204 KB | Output is correct |
5 | Incorrect | 1 ms | 204 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 204 KB | Output is correct |
2 | Correct | 1 ms | 204 KB | Output is correct |
3 | Incorrect | 2 ms | 332 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 204 KB | Output is correct |
2 | Correct | 0 ms | 204 KB | Output is correct |
3 | Correct | 1 ms | 204 KB | Output is correct |
4 | Correct | 0 ms | 204 KB | Output is correct |
5 | Incorrect | 1 ms | 204 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 460 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 460 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |