# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
743768 | 2023-05-18T00:38:45 Z | Abrar_Al_Samit | 정렬하기 (IOI15_sorting) | C++17 | 2 ms | 368 KB |
#include <bits/stdc++.h> #include "sorting.h" using namespace std; int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) { if(N<3) { } int at[N]; for(int i=0; i<N; ++i) { at[S[i]] = i; } for(int i=0; i<N-2; ++i) { swap(S[X[i]], S[Y[i]]); at[S[0]] = 0; at[S[1]] = 1; int pos = N-i-1; if(at[pos]==pos) { P[i] = Q[i] = 0; } else { P[i] = at[pos], Q[i] = pos; swap(S[pos], S[at[pos]]); at[S[at[pos]]] = at[pos]; at[pos] = pos; } if(i==N-3) { if(at[0]==0) return i+1; else { P[i+1] = Q[i+1] = 0; return i+2; } } } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 340 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 340 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 340 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 340 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 368 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 368 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |