# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1018541 | 2024-07-10T06:35:56 Z | huutuan | 정렬하기 (IOI15_sorting) | C++14 | 4 ms | 488 KB |
#include "sorting.h" #include <bits/stdc++.h> using namespace std; int a[200010]; int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) { iota(a, a+N, 0); for (int i=M-1; i>=0; --i) swap(a[X[i]], a[Y[i]]); for (int i=0; i<M; ++i){ P[i]=Q[i]=0; swap(a[X[i]], a[Y[i]]); swap(S[X[i]], S[Y[i]]); for (int j=0; j<N; ++j) if (a[j]!=S[j]){ int k=find(S, S+N, a[j])-S; P[i]=j; Q[i]=k; break; } swap(S[P[i]], S[Q[i]]); } for (int j=0; j<N; ++j) assert(S[j]==j); return M; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Correct | 0 ms | 344 KB | Output is correct |
3 | Correct | 0 ms | 348 KB | Output is correct |
4 | Incorrect | 0 ms | 348 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Correct | 0 ms | 344 KB | Output is correct |
3 | Correct | 0 ms | 348 KB | Output is correct |
4 | Incorrect | 0 ms | 348 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Correct | 1 ms | 344 KB | Output is correct |
4 | Correct | 1 ms | 348 KB | Output is correct |
5 | Correct | 1 ms | 488 KB | Output is correct |
6 | Correct | 0 ms | 348 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Correct | 0 ms | 344 KB | Output is correct |
3 | Correct | 0 ms | 348 KB | Output is correct |
4 | Incorrect | 0 ms | 348 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |