제출 #421462

#제출 시각아이디문제언어결과실행 시간메모리
421462schse고대 책들 (IOI17_books)C++17
50 / 100
225 ms34288 KiB
#include "books.h" #ifndef EVAL #include "grader.cpp" #endif #include <bits/stdc++.h> using namespace std; long long minimum_walk(std::vector<int> p, int s) { 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_MAX, INT32_MIN}); 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 - mx) * 2; mx = max(mx, cmmc[i].second); } return triplenght; }

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

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