Submission #804111

#TimeUsernameProblemLanguageResultExecution timeMemory
804111_martynas정렬하기 (IOI15_sorting)C++11
16 / 100
5 ms468 KiB
#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[]) { int T[N]; for (int i = 0; i < N; i++) T[i] = S[i]; for (int i = 0; i < M; i++) swap(T[X[i]], T[Y[i]]); for (int i = 0; i < M; i++) P[i] = Q[i] = 0; vector<pair<int, int>> swap_list; for (int i = 0; i < N; i++) { if (T[i] != i) { swap_list.emplace_back(i, T[i]); for (int j = i+1; j < N; j++) { if (T[j] == i) { swap(T[i], T[j]); } } } } for (int i = 0; i < (int)swap_list.size(); i++) { swap(S[X[i]], S[Y[i]]); int a, b; for (int j = 0; j < N; j++) { if (S[j] == swap_list[i].first) a = j; if (S[j] == swap_list[i].second) b = j; } P[i] = a; Q[i] = b; swap(S[a], S[b]); } return M; }

Compilation message (stderr)

sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:31:22: warning: 'b' may be used uninitialized in this function [-Wmaybe-uninitialized]
   31 |         swap(S[a], S[b]);
      |                      ^
sorting.cpp:31:16: warning: 'a' may be used uninitialized in this function [-Wmaybe-uninitialized]
   31 |         swap(S[a], S[b]);
      |                ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...