This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
long long N,K, A[200005];
bitset<200005> bs;
int main() {
ios_base::sync_with_stdio(false); cin.tie(NULL);
cin >> N >> K;
A[0] = 0;
for (long long i = 1; i < N; ++i) {
long long u,v,w; cin >> u >> v >> w; u--, v--;
A[i] = A[i-1] + w;
}
long long low = -1, high = 200000000000000;
while (high-low > 1) {
long long mid = (low+high)/2, n = 0;
while (n < N && A[n] <= mid) n++;
long long num = 1;
while (A[N-1]-A[n-1] > mid) {
long long a = n;
while (a < N && A[a]-A[n-1] <= mid) a++;
long long b = a;
while (b < N && A[b]-A[a] <= mid) b++;
num++, n = b;
}
if (num <= K) high = mid;
else low = mid;
}
cout << high << '\n';
long long n = 0;
while (n < N && A[n] <= high) n++;
bs[n-1] = 1;
while (A[N-1]-A[n-1] > high) {
long long a = n;
while (a < N && A[a]-A[n-1] <= high) a++;
long long b = a;
while (b < N && A[b]-A[a] <= high) b++;
bs[b-1] = 1, n = b;
}
for (long long i = 0; i < N && bs.count() < K; ++i) if (!bs[i]) bs[i] = 1;
for (long long i = 0; i < N; ++i) if (bs[i]) cout << i+1 << ' ';
return 0;
}
Compilation message (stderr)
Main.cpp: In function 'int main()':
Main.cpp:41:47: warning: comparison of integer expressions of different signedness: 'std::size_t' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
41 | for (long long i = 0; i < N && bs.count() < K; ++i) if (!bs[i]) bs[i] = 1;
| ~~~~~~~~~~~^~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |