Submission #240861

#TimeUsernameProblemLanguageResultExecution timeMemory
240861RayaBurong25_1Arranging Shoes (IOI19_shoes)C++17
30 / 100
1085 ms25232 KiB
#include "shoes.h" #include <map> #include <vector> #include <algorithm> #include <set> #include <cassert> int abs(int a) { return (a < 0)?-a:a; } long long count_swaps(std::vector<int> s) { int i, sz, norp; long long cnt = 0; std::map<int, std::vector<int> > pos[2]; for (i = 0; i < s.size(); i++) { sz = abs(s[i]); norp = (s[i] > 0); if (pos[norp].find(sz) == pos[norp].end()) pos[norp][sz] = std::vector<int>(); pos[norp][sz].push_back(i); } int nxt; std::vector<int> moved; int ismoved[200005] = {0}; for (i = 0; i < s.size(); i++) { sz = abs(s[i]); norp = (s[i] > 0); if (ismoved[i]) continue; // printf("%d ", sz); nxt = std::upper_bound(pos[!norp][sz].begin(), pos[!norp][sz].end(), i) - pos[!norp][sz].begin(); if (nxt == pos[!norp][sz].size()) continue; assert(nxt == 0); // while ((long long) ismoved[pos[!norp][sz][nxt]]) // nxt++; // printf("%d ", pos[sz][nxt]); cnt += (pos[!norp][sz][nxt] - i - 1) - (std::upper_bound(moved.begin(), moved.end(), pos[!norp][sz][nxt]) - std::upper_bound(moved.begin(), moved.end(), i)); // printf("%d ", (s[i] > 0)); cnt += (s[i] > 0); moved.insert(std::upper_bound(moved.begin(), moved.end(), pos[!norp][sz][nxt]), pos[!norp][sz][nxt]); ismoved[pos[!norp][sz][nxt]] = 1; pos[!norp][sz].erase(pos[!norp][sz].begin() + nxt); // printf("%lld\n", cnt); } return cnt; }

Compilation message (stderr)

shoes.cpp: In function 'long long int count_swaps(std::vector<int>)':
shoes.cpp:17:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for (i = 0; i < s.size(); i++)
              ~~^~~~~~~~~~
shoes.cpp:28:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for (i = 0; i < s.size(); i++)
              ~~^~~~~~~~~~
shoes.cpp:36:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   if (nxt == pos[!norp][sz].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...