제출 #1053740

#제출 시각아이디문제언어결과실행 시간메모리
1053740OspleiSorting (IOI15_sorting)C++17
20 / 100
1 ms348 KiB
#include "sorting.h" #include <bits/stdc++.h> using namespace std; #define pb push_back typedef long long ll; typedef pair <ll, ll> LL; int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) { vector <int> orden; int ans = 0, pos = 0; for (ll i = 0; i < N; i++) { orden.pb(S[i]); } sort(orden.begin(), orden.end()); for (ll i = 0; i < N; i++) { if (orden[i] != S[i]) { ans++; for (ll j = i + 1; j < N; j++) { if (orden[i] == S[j]) { int aux = S[i]; S[i] = S[j]; S[j] = aux; P[pos] = i; Q[pos] = j; pos++; break; } } } } return ans; }

컴파일 시 표준 에러 (stderr) 메시지

sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:30:20: warning: conversion from 'll' {aka 'long long int'} to 'int' may change value [-Wconversion]
   30 |           P[pos] = i;
      |                    ^
sorting.cpp:31:20: warning: conversion from 'll' {aka 'long long int'} to 'int' may change value [-Wconversion]
   31 |           Q[pos] = j;
      |                    ^
sorting.cpp:11:39: warning: unused parameter 'M' [-Wunused-parameter]
   11 | int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
      |                                   ~~~~^
sorting.cpp:11:46: warning: unused parameter 'X' [-Wunused-parameter]
   11 | int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
      |                                          ~~~~^~~
sorting.cpp:11:55: warning: unused parameter 'Y' [-Wunused-parameter]
   11 | int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
      |                                                   ~~~~^~~
#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...