Submission #825594

#TimeUsernameProblemLanguageResultExecution timeMemory
825594xinkRoad Construction (JOI21_road_construction)C++17
5 / 100
118 ms10860 KiB
#include <iostream> #include <vector> #include <utility> #include <sstream> #include <climits> #include <cstring> #include <math.h> #include <algorithm> #define ll long long #define ld long double using namespace std; const ll mod = 1e9 + 7; typedef vector<int> vi; typedef pair<ll, ll> ii; typedef vector<ii> vii; const int maxn1 = 2e5 + 5, maxn2 = 1e6 + 6; ii coor[maxn1]; ll dist[maxn2]; ll get_manhattan_dist(int i, int j) { return abs(coor[i].first - coor[j].first) + abs(coor[i].second - coor[j].second); } void solve_sub1(int n, int k) { int n_road = 0; for (int i = 0; i < n; i++) { for (int j = 0; j < i; j++) { dist[n_road++] = get_manhattan_dist(i, j); } } sort(dist, dist + n_road); for (int i = 0; i < k; i++) { cout << dist[i] << "\n"; } } void solve_sub2(int n, ll k) { sort(coor, coor + n); ll l = 1, r = coor[n - 1].first - coor[0].first; while (l < r) { int m = (l + r) >> 1, l1 = 0; ll cnt = 0; for (int i = 0; i < n; i++) { while (l1 < i && get_manhattan_dist(l1, i) > m) { l1++; } cnt += i - l1; } if (cnt >= k) { r = m; } else { l = m + 1; } } int n_road = 0, lp = 0; for (int i = 0; i < n; i++) { while (lp < i && get_manhattan_dist(lp, i) >= l) { lp++; } for (int j = lp; j < i; j++) { dist[n_road++] = get_manhattan_dist(j, i); } } for (int i = n_road; i < k; i++) { dist[i] = l; } sort(dist, dist + k); for (int i = 0; i < k; i++) { cout << dist[i] << '\n'; } } void solve() { int n, k; cin >> n >> k; bool all_y0 = 1; for (int i = 0; i < n; i++) { cin >> coor[i].first >> coor[i].second; all_y0 &= (coor[i].second == 0); } if (n <= 1000) { solve_sub1(n, k); return; } if (all_y0) { solve_sub2(n, k); return; } } int main() { // freopen("input_text", "r", stdin); // freopen("output_text", "w", stdout); // ios_base::sync_with_stdio(NULL); cin.tie(0); cout.tie(0); int t = 1; // cin >> t; while (t-- > 0) solve(); }
#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...