結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー tomeruntomerun
提出日時 2024-02-23 23:05:05
言語 Crystal
(1.11.2)
結果
AC  
実行時間 456 ms / 2,000 ms
コード長 978 bytes
コンパイル時間 13,159 ms
コンパイル使用メモリ 296,348 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-09-29 08:28:16
合計ジャッジ時間 50,434 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 392 ms
5,248 KB
testcase_02 AC 398 ms
5,248 KB
testcase_03 AC 391 ms
5,248 KB
testcase_04 AC 360 ms
6,272 KB
testcase_05 AC 352 ms
5,632 KB
testcase_06 AC 369 ms
5,248 KB
testcase_07 AC 388 ms
14,688 KB
testcase_08 AC 389 ms
11,264 KB
testcase_09 AC 395 ms
14,976 KB
testcase_10 AC 392 ms
12,672 KB
testcase_11 AC 388 ms
14,848 KB
testcase_12 AC 387 ms
16,896 KB
testcase_13 AC 408 ms
21,376 KB
testcase_14 AC 439 ms
26,588 KB
testcase_15 AC 421 ms
21,568 KB
testcase_16 AC 391 ms
15,104 KB
testcase_17 AC 400 ms
15,360 KB
testcase_18 AC 397 ms
19,584 KB
testcase_19 AC 401 ms
20,480 KB
testcase_20 AC 456 ms
27,008 KB
testcase_21 AC 447 ms
27,136 KB
testcase_22 AC 436 ms
27,136 KB
testcase_23 AC 423 ms
27,120 KB
testcase_24 AC 438 ms
27,136 KB
testcase_25 AC 409 ms
27,264 KB
testcase_26 AC 451 ms
27,136 KB
testcase_27 AC 402 ms
27,136 KB
testcase_28 AC 447 ms
27,136 KB
testcase_29 AC 437 ms
25,600 KB
testcase_30 AC 420 ms
27,136 KB
testcase_31 AC 453 ms
27,116 KB
testcase_32 AC 448 ms
27,088 KB
testcase_33 AC 436 ms
27,264 KB
testcase_34 AC 438 ms
27,136 KB
testcase_35 AC 431 ms
27,124 KB
testcase_36 AC 411 ms
27,136 KB
testcase_37 AC 422 ms
27,136 KB
testcase_38 AC 417 ms
27,136 KB
testcase_39 AC 440 ms
27,136 KB
testcase_40 AC 408 ms
34,560 KB
testcase_41 AC 387 ms
27,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353i64

read_line.to_i.times do
  solve()
end

def solve
  n, l = read_line.split.map(&.to_i)
  xys = Array.new(n) { read_line.split.map(&.to_i) }
  mo = Mo.new(l, (l + 1 + 499) // 500)
  xys.each do |xy|
    mo.add_query(xy[0], xy[1])
  end
  mo.build
  puts n
  mo.each do |x, y, _|
    puts "#{x} #{y}"
  end
end

class Mo
  include Enumerable(Tuple(Int32, Int32, Int32))

  def initialize(@n : Int32, @bucket_size : Int32)
    @bucket = Array(Array(Int32)).new((@n + @bucket_size - 1) // @bucket_size) { [] of Int32 }
    @qs = Array(Tuple(Int32, Int32)).new
  end

  def add_query(l : Int32, r : Int32)
    @bucket[l // @bucket_size] << @qs.size
    @qs << {l, r}
  end

  def build
    @bucket.size.times do |i|
      @bucket[i].sort_by! { |qi| @qs[qi][1] }
      if i % 2 != 0
        @bucket[i].reverse!
      end
    end
  end

  def each
    @bucket.each do |b|
      b.each do |qi|
        yield ({@qs[qi][0], @qs[qi][1], qi})
      end
    end
  end
end
0