QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#189226#6639. Disk Treeucup-team004WA 0ms3444kbC++202.2kb2023-09-27 01:49:262023-09-27 01:49:27

Judging History

你现在查看的是最新测评结果

  • [2023-09-27 01:49:27]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3444kb
  • [2023-09-27 01:49:26]
  • 提交

answer

#include <bits/stdc++.h>

using i64 = long long;

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    
    int n;
    std::cin >> n;
    
    std::vector<int> x(n), y(n), R(n);
    for (int i = 0; i < n; i++) {
        std::cin >> x[i] >> y[i] >> R[i];
    }
    
    auto cmp = [&](int i, int j) {
        return y[i] < y[j];
    };
    
    std::set<int, decltype(cmp)> s(cmp);
    
    int lst = -1;
    std::vector<std::array<int, 4>> a;
    for (int i = 0; i < n; i++) {
        a.push_back({x[i] - R[i], 0, y[i], i});
        a.push_back({x[i] + R[i], 1, y[i], i});
    }
    
    std::vector<std::array<int, 4>> ans;
    std::sort(a.begin(), a.end());
    
    for (int l = 0, r = 0; l < a.size(); l = r) {
        while (r < a.size() && a[l][0] == a[r][0] && a[l][1] == a[r][1]) {
            r++;
        }
        if (a[l][1] == 1) {
            for (int i = l; i < r; i++) {
                s.erase(a[i][3]);
            }
            lst = a[l][3];
        } else {
            for (int i = l; i < r; i++) {
                auto it = s.lower_bound(a[i][3]);
                if (it != s.begin()) {
                    int j = *std::prev(it);
                    if (i > l && y[j] < a[i - 1][2]) {
                        ans.push_back({a[i][0], a[i][2], a[i - 1][0], a[i - 1][2]});
                    } else {
                        ans.push_back({a[i][0], a[i][2], a[i][0], y[j]});
                    }
                } else if (it != s.end()) {
                    int j = *it;
                    if (i < r - 1 && y[j] > a[i + 1][2]) {
                        ans.push_back({a[i][0], a[i][2], a[i + 1][0], a[i + 1][2]});
                    } else {
                        ans.push_back({a[i][0], a[i][2], a[i][0], y[j]});
                    }
                }
            }
            if (s.empty() && lst != -1) {
                ans.push_back({a[l][0], a[l][2], x[lst] + R[lst], y[lst]});
            }
            for (int i = l; i < r; i++) {
                s.insert(a[i][3]);
            }
        }
    }
    
    std::cout << "YES\n";
    for (auto [a, b, c, d] : ans) {
        std::cout << a << " " << b << " " << c << " " << d << "\n";
    }
    
    return 0;
}

詳細信息

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3444kb

input:

3
1 0 3
10 10 6
0 5 1

output:

YES
-1 5 -1 0
4 10 4 0

result:

wrong answer Integer element x_1,y_1,x_2,y_2[1] equals to -1, violates the range [0, 10^9]