# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
958369 | 2024-04-05T14:44:03 Z | 12345678 | 정렬하기 (IOI15_sorting) | C++17 | 5 ms | 604 KB |
#include "sorting.h" #include <bits/stdc++.h> using namespace std; const int nx=505; int idx[nx], s[nx]; int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) { for (int i=0; i<N; i++) idx[i]=i, s[i]=S[i]; for (int i=N-1; i>=0; i--) swap(idx[X[i]], idx[Y[i]]); for (int i=0; i<N; i++) { swap(idx[X[i]], idx[Y[i]]); swap(s[X[i]], s[Y[i]]); for (int j=0; j<N; j++) if (idx[j]==i) P[i]=j; for (int j=0; j<N; j++) { if (s[j]==i) { Q[i]=j; swap(s[P[i]], s[Q[i]]); break; } } } for (int i=N-1; i>=0; i--) if (P[i]!=Q[i]) return i+1; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Integer parameter [name=R] equals to -33, violates the range [0, 1] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Integer parameter [name=R] equals to -33, violates the range [0, 1] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Integer parameter [name=R] equals to -4, violates the range [0, 60] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Integer parameter [name=R] equals to -33, violates the range [0, 1] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 5 ms | 604 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 5 ms | 604 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |