結果

問題 No.5012 Better Mo's Algorithm is Needed!! (Execute)
ユーザー butsurizukibutsurizuki
提出日時 2022-12-13 20:57:02
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 682 bytes
コンパイル時間 3,254 ms
実行使用メモリ 6,952 KB
スコア 890,000,000,085,950,148
最終ジャッジ日時 2022-12-13 20:58:17
合計ジャッジ時間 65,028 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
3,400 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 35 ms
6,220 KB
testcase_08 AC 35 ms
6,124 KB
testcase_09 AC 36 ms
6,260 KB
testcase_10 AC 35 ms
6,100 KB
testcase_11 AC 35 ms
6,260 KB
testcase_12 AC 36 ms
6,236 KB
testcase_13 AC 34 ms
6,112 KB
testcase_14 AC 34 ms
6,188 KB
testcase_15 AC 34 ms
6,080 KB
testcase_16 AC 36 ms
6,152 KB
testcase_17 AC 36 ms
6,140 KB
testcase_18 AC 37 ms
6,052 KB
testcase_19 AC 35 ms
6,152 KB
testcase_20 AC 35 ms
6,224 KB
testcase_21 AC 35 ms
6,268 KB
testcase_22 AC 5 ms
3,788 KB
testcase_23 AC 4 ms
3,796 KB
testcase_24 AC 5 ms
3,868 KB
testcase_25 AC 7 ms
3,844 KB
testcase_26 AC 7 ms
3,968 KB
testcase_27 AC 7 ms
3,876 KB
testcase_28 AC 15 ms
4,440 KB
testcase_29 AC 15 ms
4,464 KB
testcase_30 AC 15 ms
4,576 KB
testcase_31 AC 28 ms
5,520 KB
testcase_32 AC 30 ms
5,608 KB
testcase_33 AC 28 ms
5,692 KB
testcase_34 AC 5 ms
3,892 KB
testcase_35 AC 6 ms
3,836 KB
testcase_36 AC 6 ms
3,752 KB
testcase_37 AC 8 ms
3,888 KB
testcase_38 AC 8 ms
3,860 KB
testcase_39 AC 8 ms
3,916 KB
testcase_40 AC 17 ms
4,612 KB
testcase_41 AC 16 ms
4,456 KB
testcase_42 AC 16 ms
4,436 KB
testcase_43 AC 29 ms
5,656 KB
testcase_44 AC 31 ms
5,608 KB
testcase_45 AC 30 ms
5,796 KB
testcase_46 AC 9 ms
3,856 KB
testcase_47 AC 8 ms
3,852 KB
testcase_48 AC 8 ms
3,936 KB
testcase_49 AC 11 ms
3,952 KB
testcase_50 AC 12 ms
4,104 KB
testcase_51 AC 11 ms
4,048 KB
testcase_52 AC 18 ms
4,880 KB
testcase_53 AC 18 ms
4,628 KB
testcase_54 AC 19 ms
4,708 KB
testcase_55 AC 31 ms
5,880 KB
testcase_56 AC 31 ms
5,892 KB
testcase_57 AC 31 ms
5,904 KB
testcase_58 AC 12 ms
3,772 KB
testcase_59 AC 12 ms
3,896 KB
testcase_60 AC 12 ms
4,056 KB
testcase_61 RE -
testcase_62 AC 15 ms
4,248 KB
testcase_63 AC 15 ms
4,132 KB
testcase_64 AC 23 ms
4,964 KB
testcase_65 AC 23 ms
4,836 KB
testcase_66 AC 23 ms
4,836 KB
testcase_67 AC 35 ms
6,168 KB
testcase_68 AC 35 ms
6,008 KB
testcase_69 AC 35 ms
6,248 KB
testcase_70 AC 36 ms
6,264 KB
testcase_71 AC 35 ms
6,200 KB
testcase_72 AC 36 ms
6,060 KB
testcase_73 AC 36 ms
6,140 KB
testcase_74 AC 35 ms
6,120 KB
testcase_75 AC 36 ms
6,180 KB
testcase_76 RE -
testcase_77 AC 36 ms
6,280 KB
testcase_78 AC 36 ms
6,104 KB
testcase_79 RE -
testcase_80 AC 37 ms
6,148 KB
testcase_81 AC 35 ms
6,172 KB
testcase_82 AC 35 ms
6,384 KB
testcase_83 AC 35 ms
6,300 KB
testcase_84 AC 35 ms
6,044 KB
testcase_85 AC 37 ms
6,232 KB
testcase_86 AC 34 ms
6,152 KB
testcase_87 AC 35 ms
6,172 KB
testcase_88 AC 35 ms
6,372 KB
testcase_89 RE -
testcase_90 AC 37 ms
6,136 KB
testcase_91 AC 36 ms
6,156 KB
testcase_92 AC 36 ms
6,192 KB
testcase_93 AC 36 ms
6,152 KB
testcase_94 AC 37 ms
6,340 KB
testcase_95 RE -
testcase_96 AC 35 ms
6,016 KB
testcase_97 AC 36 ms
6,240 KB
testcase_98 AC 36 ms
6,184 KB
testcase_99 AC 36 ms
6,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int n,q;
  cin >> n >> q;
  vector<int> a(n);
  for(int i=0;i<n;i++){cin >> a[i];}
  vector<int> l(q),r(q);
  for(int i=0;i<q;i++){
    cin >> l[i] >> r[i];
  }
  vector<vector<pair<int,int>>> mem(316);
  for(int i=0;i<q;i++){
    mem[l[i]/316].push_back({r[i],i});
  }
  vector<int> P;
  for(int i=0;i<316;i++){
    sort(mem[i].begin(),mem[i].end());
    if(i%2){reverse(mem[i].begin(),mem[i].end());}
    for(auto &nx : mem[i]){
      P.push_back(nx.second);
    }
  }
  for(int i=0;i<q;i++){
    if(i){cout << " ";}
    cout << P[i]+1;
  }cout << "\n";
  return 0;
}
0