제출 #605544

#제출 시각아이디문제언어결과실행 시간메모리
605544FEDIKUS전선 연결 (IOI17_wiring)C++17
0 / 100
1 ms212 KiB
#include "wiring.h" #include <vector> #include <algorithm> #include <iostream> #include <cstring> #include <cassert> using namespace std; typedef pair<int,bool> pie; const bool BLUE = true, RED = false; const int max_n = 200 * 1000; // TO BE DETERMINED const int TOF = 2; vector<pie> points; long long d[max_n + 1], ps[max_n + 1]; int head[max_n]; long long val(int l, int r) { int m = head[r], x = r+1 - m, y = m - l; long long res = (ps[r+1] - ps[m]) - (ps[m] - ps[l]); if (x > y) res -= (long long)(x-y) * points[m-1].first; if (x < y) res += (long long)(y-x) * points[m].first; return res; } long long min_total_length (vector <int> red, vector <int> blue) { int n = blue.size(), m = red.size(); for (int i = 0; i < n; i++) points.push_back(pie(blue[i], BLUE)); for (int i = 0; i < m; i++) points.push_back(pie(red[i], RED)); sort (points.begin(), points.end()); n = points.size(); for (int i = 0; i < n - 1; i++) assert(points[i].first != points[i + 1].first); for (int i = 1; i <= n; i++) ps[i] = ps[i-1] + points[i-1].first; long long *d = &(::d[1]); memset(d, 50, sizeof(long long) * n); for (int i = 1; i < n; i++) { head[i] = head[i-1]; if(points[i].second!=points[i-1].second){ head[i]=i; } if (head[i] > 0) { int l = head[head[i] - 1], r = head[i]; if (l == 0) d[i] = val(0, i); while (r - l > 1) { int m = (r + l) / 2; if (d[m-1] + val(m, i) > d[m-2] + val(m-1, i)) r = m; else l = m; } d[i] = d[l - 1] + val(l, i); } } return d[n-1]; }

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

wiring.cpp: In function 'long long int min_total_length(std::vector<int>, std::vector<int>)':
wiring.cpp:51:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
   51 |    if (l == 0)
      |    ^~
wiring.cpp:54:5: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
   54 |     while (r - l > 1) {
      |     ^~~~~
#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...