結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー InTheBloomInTheBloom
提出日時 2024-02-23 23:44:21
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,125 bytes
コンパイル時間 1,408 ms
コンパイル使用メモリ 123,400 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-09-29 09:13:21
合計ジャッジ時間 28,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 196 ms
5,248 KB
testcase_02 AC 195 ms
6,820 KB
testcase_03 AC 191 ms
6,820 KB
testcase_04 AC 193 ms
6,816 KB
testcase_05 AC 192 ms
6,816 KB
testcase_06 AC 192 ms
6,816 KB
testcase_07 AC 198 ms
6,816 KB
testcase_08 AC 194 ms
6,820 KB
testcase_09 AC 221 ms
6,816 KB
testcase_10 AC 213 ms
5,248 KB
testcase_11 AC 200 ms
5,248 KB
testcase_12 AC 192 ms
5,248 KB
testcase_13 AC 199 ms
5,832 KB
testcase_14 WA -
testcase_15 AC 194 ms
5,836 KB
testcase_16 AC 196 ms
5,248 KB
testcase_17 AC 202 ms
5,584 KB
testcase_18 AC 205 ms
5,760 KB
testcase_19 AC 201 ms
5,888 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 168 ms
7,296 KB
testcase_41 AC 165 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <tuple>

using namespace std;

void solve (int N, int L, vector<pair<int, int>>& points) {
    // 最適解は求められないはず -> Moの巡回順でやってみる
    int width = (int) (L / sqrt(N));

    vector<tuple<int, int, int>> query(N);
    for (int i = 0; i < N; i++) {
        query[i] = make_tuple(points[i].first, points[i].second, points[i].first / width);
    }

    sort(query.begin(), query.end(),
            [](tuple<int, int, int>& x, tuple<int, int, int>& y) {
            if (get<2>(x) != get<2>(y)) return get<2>(x) < get<2>(y);
            return get<1>(x) < get<1>(y);
            });

    cout << N << "\n";
    for (auto& q : query) {
        cout << get<0>(q) << " " << get<1>(q) << "\n";
    }
}

int main () {
    int T; cin >> T;
    for (int t = 0; t < T; t++) {
        int N, L; cin >> N >> L;
        vector<pair<int, int>> points(N);
        for (int i = 0; i < N; i++) {
            int X, Y; cin >> X >> Y;
            points[i] = make_pair(X, Y);
        }

        solve(N, L, points);
    }
}
0