結果

問題 No.165 四角で囲え!
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-30 21:02:40
言語 Crystal
(1.11.2)
結果
AC  
実行時間 1,091 ms / 5,000 ms
コード長 405 bytes
コンパイル時間 12,516 ms
コンパイル使用メモリ 299,048 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 19:45:57
合計ジャッジ時間 26,165 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 453 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 661 ms
6,940 KB
testcase_06 AC 141 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 650 ms
6,940 KB
testcase_12 AC 901 ms
6,944 KB
testcase_13 AC 916 ms
6,944 KB
testcase_14 AC 930 ms
6,940 KB
testcase_15 AC 894 ms
6,944 KB
testcase_16 AC 954 ms
6,944 KB
testcase_17 AC 870 ms
6,944 KB
testcase_18 AC 1,091 ms
6,940 KB
testcase_19 AC 895 ms
6,940 KB
testcase_20 AC 879 ms
6,940 KB
testcase_21 AC 870 ms
6,940 KB
testcase_22 AC 884 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,b=gets.not_nil!.split.map &.to_i
a=(0...n).map{gets.not_nil!.split.map &.to_i}
x=a.map{|c|c[0]}.sort.uniq
a.map{|c|c[0]=x.index(c[0]).not_nil!}
z=0
n.times{|i|n.times{|j|
  f=[0]*n
  g=[0]*n
  n.times{|k|a[i][1]<=a[k][1]&&a[k][1]<=a[j][1]&&(f[a[k][0]]+=1;g[a[k][0]]+=a[k][2])}
  s=t=0
  l=0
  n.times{|k|
    s+=f[k]
    t+=g[k]
    while t>b
      s-=f[l];t-=g[l];l+=1
    end
    z=s if z<s
  }
}}
p z
0