Submission #421445

#TimeUsernameProblemLanguageResultExecution timeMemory
421445schse고대 책들 (IOI17_books)C++17
0 / 100
1 ms204 KiB
#include "books.h" #ifndef EVAL #include "grader.cpp" #endif #include <bits/stdc++.h> using namespace std; struct unionfind { vector<int> root = vector<int>(1005); int find(int i) { if (root[i] == i) return i; return root[i] = find(root[i]); } bool unite(int a, int b) { a = find(a); b = find(b); if (a == b) return false; root[a] = b; return true; } } un; struct qnode { int dis, a, b; }; long long minimum_walk(std::vector<int> p, int s) { iota(un.root.begin(), un.root.end(), 0); vector<int> cycle(p.size(), -1); vector<vector<int>> cycles; vector<pair<int, int>> cmmc; long long triplenght = 0; for (int i = 0; i < p.size(); i++) { if (cycle[i] == -1 && p[i] != i) { int t = i; cycles.push_back({}); cmmc.push_back({INT32_MIN, INT32_MAX}); do { cmmc[cmmc.size() - 1].first = min(cmmc[cmmc.size() - 1].first, t); cmmc[cmmc.size() - 1].second = max(cmmc[cmmc.size() - 1].second, t); cycles[cycles.size() - 1].push_back(t); cycle[t] = cycles.size(); triplenght += abs(t - p[t]); t = p[t]; } while (t != i); } } if (cmmc.size() == 0) return 0; triplenght += 2 * cmmc[0].first; //initial walk int mx = cmmc[0].second; for (int i = 1; i < cmmc.size(); i++) { if (mx < cmmc[i].first) triplenght += abs(cmmc[i].first - cmmc[i - 1].second) * 2; mx = max(mx, cmmc[i].second); } return triplenght; }

Compilation message (stderr)

books.cpp: In function 'long long int minimum_walk(std::vector<int>, int)':
books.cpp:42:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   42 |  for (int i = 0; i < p.size(); i++)
      |                  ~~^~~~~~~~~~
books.cpp:67:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   67 |  for (int i = 1; i < cmmc.size(); i++)
      |                  ~~^~~~~~~~~~~~~
#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...