# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
621011 | 2022-08-03T11:04:06 Z | Hazem | 정렬하기 (IOI15_sorting) | C++14 | 3 ms | 340 KB |
#include <bits/stdc++.h> using namespace std; int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) { int n = N; int cur = 0; assert(n!=1); swap(S[0],S[1]); for(int i=0;i<n;i++) if(S[i]==0){ P[cur] = 1; Q[cur] = i; cur++; swap(S[i],S[1]); } swap(S[0],S[1]); for(int i=0;i<n;i++) if(S[i]==1){ P[cur] = 1; Q[cur] = i; cur++; swap(S[i],S[1]); } for(int i=2;i<n;i++) for(int j=2;j<n;j++) if(i==j) continue; else if(S[j]==i){ P[cur] = i; Q[cur] = j; cur++; swap(S[i],S[j]); swap(S[0],S[1]); } if(S[0]>S[1]){ P[cur] = Q[cur] = 0; cur++; } return cur; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 340 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 340 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 1 ms | 212 KB | Output is correct |
4 | Correct | 0 ms | 212 KB | Output is correct |
5 | Incorrect | 0 ms | 212 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 340 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |