Submission #790089

#TimeUsernameProblemLanguageResultExecution timeMemory
790089PoonYaPatSorting (IOI15_sorting)C++14
0 / 100
2 ms468 KiB
#include "sorting.h" #include <bits/stdc++.h> using namespace std; typedef pair<int,int> pii; int n,m,b[200005],x[200005],y[200005],p[200005],q[200005]; vector<pii> ans; int a[200005],pos[200005],val[200005]; bool check(int h, bool mode) { for (int i=0; i<n; ++i) a[i]=b[i], val[i]=i; for (int i=h; i>=0; --i) swap(a[x[i]],a[y[i]]); vector<pii> v; for (int i=0; i<n; ++i) pos[a[i]]=i; for (int i=0; i<n; ++i) { if (i!=pos[i]) { v.push_back(pii(i,pos[i])); int bef=a[i]; a[pos[i]]=a[i]; a[i]=i; pos[bef]=pos[i]; pos[i]=i; } } if (mode) { for (int i=0; i<=h; ++i) { swap(val[x[i]],val[y[i]]); if (v.size()) { ans.push_back(pii(val[v.back().first],val[v.back().second])); v.pop_back(); } else ans.push_back(pii(0,0)); } } if (v.size()<=h+1) return true; else return false; } int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) { n=N; m=M; for (int i=0; i<n; ++i) b[i]=S[i], x[i]=X[i], y[i]=Y[i]; int l=0, r=m-1; while (l<r) { int mid=(l+r)/2; if (check(mid,0)) r=mid; else l=mid+1; } check(l,1); for (int i=0; i<ans.size(); ++i) P[i]=ans[i].first, Q[i]=ans[i].second; return ans.size(); }

Compilation message (stderr)

sorting.cpp: In function 'bool check(int, bool)':
sorting.cpp:38:14: warning: comparison of integer expressions of different signedness: 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   38 |  if (v.size()<=h+1) return true;
      |      ~~~~~~~~^~~~~
sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:54:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   54 |  for (int i=0; i<ans.size(); ++i) P[i]=ans[i].first, Q[i]=ans[i].second;
      |                ~^~~~~~~~~~~
sorting.cpp:55:17: warning: conversion from 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} to 'int' may change value [-Wconversion]
   55 |  return ans.size();
      |         ~~~~~~~~^~
#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...