Submission #795536

#TimeUsernameProblemLanguageResultExecution timeMemory
795536CauchicoSorting (IOI15_sorting)C++14
20 / 100
9 ms340 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 n = N, m = M;
	for (int i=n;i<m;i++) {
		P[i] = Q[i] = 0;
	}
	vector<int> p,q;
	bool toswap = true;
	for (int i=2;i<n;i++) {
		if (Y[0] == 1 and toswap) {
			swap(S[0],S[1]);
			toswap = false;
		}
		for (int j=0;j<n;j++) {
			if (S[j] == i and i != j) {
				swap(S[j], S[i]);
				p.push_back(i);
				q.push_back(j);
				toswap = true;
			}
		}
	}
	if (S[0] != 0) {
		p.push_back(0);
		if (Y[0] == 1) q.push_back(0);
		else q.push_back(1);
	}
	for (int i=0;i<p.size();i++) {
		P[i] = p[i];
		Q[i] = q[i];
	}	
	return p.size();
 
}

Compilation message (stderr)

sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:31:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   31 |  for (int i=0;i<p.size();i++) {
      |               ~^~~~~~~~~
sorting.cpp:35:15: warning: conversion from 'std::vector<int>::size_type' {aka 'long unsigned int'} to 'int' may change value [-Wconversion]
   35 |  return p.size();
      |         ~~~~~~^~
sorting.cpp:5:46: warning: unused parameter 'X' [-Wunused-parameter]
    5 | 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...