# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1108053 | 2024-11-02T16:02:19 Z | Aviansh | 정렬하기 (IOI15_sorting) | C++17 | 1000 ms | 336 KB |
#include "sorting.h" #include <bits/stdc++.h> using namespace std; int findSwapPairs(int n, int s[], int m, int x[], int y[], int p[], int q[]) { if(n<m){ while(1){ continue; } } int be[n]; iota(be,be+n,0); int ber[m][n]; for(int i = m-1;i>=0;i--){ swap(be[x[i]],be[y[i]]); for(int j = 0;j<n;j++){ ber[i][be[j]]=j; } } int r = 0; for(int i = 0;i<n;i++){ swap(s[x[i]],s[y[i]]); int ind = find(s,s+n,i)-s; swap(s[ind],s[ber[r+1][i]]); p[r]=ind; q[r]=(ber[r+1][i]); r++; } for(;r<m;r++){ p[r]=0; q[r]=0; swap(s[x[r]],s[y[r]]); } for(int i = 0;i<n;i++){ assert(s[i]==i); } return r; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 336 KB | Output is correct |
2 | Execution timed out | 1088 ms | 336 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 336 KB | Output is correct |
2 | Execution timed out | 1088 ms | 336 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1058 ms | 336 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 336 KB | Output is correct |
2 | Execution timed out | 1088 ms | 336 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1054 ms | 336 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1054 ms | 336 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |