結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー otoshigootoshigo
提出日時 2024-02-23 23:22:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,353 bytes
コンパイル時間 1,501 ms
コンパイル使用メモリ 104,024 KB
実行使用メモリ 16,532 KB
最終ジャッジ日時 2024-09-29 08:55:06
合計ジャッジ時間 25,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 102 ms
5,248 KB
testcase_02 AC 101 ms
5,248 KB
testcase_03 AC 101 ms
5,248 KB
testcase_04 AC 98 ms
5,248 KB
testcase_05 AC 100 ms
5,248 KB
testcase_06 AC 99 ms
5,248 KB
testcase_07 AC 107 ms
8,948 KB
testcase_08 AC 106 ms
8,576 KB
testcase_09 AC 106 ms
10,032 KB
testcase_10 AC 106 ms
8,780 KB
testcase_11 AC 107 ms
8,708 KB
testcase_12 AC 109 ms
9,580 KB
testcase_13 AC 112 ms
12,736 KB
testcase_14 AC 123 ms
16,216 KB
testcase_15 AC 114 ms
12,064 KB
testcase_16 AC 107 ms
9,728 KB
testcase_17 AC 111 ms
10,976 KB
testcase_18 AC 112 ms
11,264 KB
testcase_19 AC 114 ms
12,348 KB
testcase_20 AC 127 ms
16,524 KB
testcase_21 AC 130 ms
16,404 KB
testcase_22 AC 126 ms
16,500 KB
testcase_23 AC 127 ms
16,404 KB
testcase_24 AC 126 ms
16,404 KB
testcase_25 AC 130 ms
16,400 KB
testcase_26 AC 131 ms
16,400 KB
testcase_27 AC 130 ms
16,404 KB
testcase_28 AC 129 ms
16,400 KB
testcase_29 AC 134 ms
16,448 KB
testcase_30 AC 128 ms
16,528 KB
testcase_31 AC 128 ms
16,532 KB
testcase_32 AC 134 ms
16,528 KB
testcase_33 AC 131 ms
16,392 KB
testcase_34 AC 128 ms
16,524 KB
testcase_35 AC 125 ms
16,404 KB
testcase_36 AC 128 ms
16,392 KB
testcase_37 AC 129 ms
16,400 KB
testcase_38 AC 132 ms
16,392 KB
testcase_39 AC 124 ms
16,528 KB
testcase_40 AC 89 ms
14,104 KB
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<cmath>
using namespace std;
using ll=long long;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int T;
    cin>>T;
    while(T--){
        int N;
        ll L;
        cin>>N>>L;
        vector<ll>X(N),Y(N);
        for(int i=0;i<N;i++)cin>>X[i]>>Y[i];
        int sq=sqrt(N),ma=L/(L/sq);
        vector V(ma+1,vector<vector<pair<int,int>>>(ma+1));
        for(int i=0;i<N;i++){
            V[X[i]/(L/sq)][Y[i]/(L/sq)].push_back(make_pair(X[i],i));
        }
        vector<int>ans;
        for(int i=0;i<=ma;i++){
            if(i%2==0){
                for(int j=0;j<ma;j++){
                    sort(all(V[i][j]));
                    for(auto[x,k]:V[i][j])ans.push_back(k);
                }
            }else{
                for(int j=ma;j>=0;j--){
                    sort(all(V[i][j]));
                    for(auto[x,k]:V[i][j])ans.push_back(k);
                }
            }
        }
        cout<<ans.size()<<"\n";
        for(auto a:ans){
            cout<<X[a]<<" "<<Y[a]<<"\n";
        }
    }
}
0