結果

問題 No.1505 Zero-Product Ranges
ユーザー maguroflymagurofly
提出日時 2021-05-14 22:10:00
言語 Ruby
(3.1.1p18 )
結果
AC  
実行時間 475 ms / 2,000 ms
コード長 4,274 bytes
コンパイル時間 30 ms
使用メモリ 33,492 KB
最終ジャッジ日時 2022-11-25 18:37:14
合計ジャッジ時間 15,767 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 71 ms
14,100 KB
testcase_01 AC 70 ms
14,184 KB
testcase_02 AC 70 ms
14,080 KB
testcase_03 AC 467 ms
33,456 KB
testcase_04 AC 467 ms
33,456 KB
testcase_05 AC 225 ms
22,932 KB
testcase_06 AC 213 ms
20,016 KB
testcase_07 AC 179 ms
19,628 KB
testcase_08 AC 205 ms
19,828 KB
testcase_09 AC 193 ms
19,680 KB
testcase_10 AC 193 ms
19,836 KB
testcase_11 AC 224 ms
22,728 KB
testcase_12 AC 166 ms
19,464 KB
testcase_13 AC 300 ms
25,888 KB
testcase_14 AC 271 ms
23,732 KB
testcase_15 AC 449 ms
31,044 KB
testcase_16 AC 475 ms
33,360 KB
testcase_17 AC 470 ms
33,440 KB
testcase_18 AC 473 ms
33,492 KB
testcase_19 AC 70 ms
14,084 KB
testcase_20 AC 69 ms
13,920 KB
testcase_21 AC 71 ms
14,232 KB
testcase_22 AC 463 ms
33,224 KB
testcase_23 AC 456 ms
31,092 KB
testcase_24 AC 445 ms
30,884 KB
testcase_25 AC 428 ms
30,392 KB
testcase_26 AC 449 ms
30,888 KB
testcase_27 AC 426 ms
30,724 KB
testcase_28 AC 449 ms
30,944 KB
testcase_29 AC 467 ms
31,084 KB
testcase_30 AC 469 ms
33,396 KB
testcase_31 AC 448 ms
30,972 KB
testcase_32 AC 269 ms
23,648 KB
testcase_33 AC 256 ms
23,440 KB
testcase_34 AC 278 ms
23,720 KB
testcase_35 AC 228 ms
23,020 KB
testcase_36 AC 231 ms
23,196 KB
testcase_37 AC 266 ms
23,732 KB
testcase_38 AC 256 ms
23,352 KB
testcase_39 AC 251 ms
23,528 KB
testcase_40 AC 255 ms
23,752 KB
testcase_41 AC 299 ms
25,304 KB
testcase_42 AC 90 ms
15,144 KB
testcase_43 AC 101 ms
16,036 KB
testcase_44 AC 95 ms
15,084 KB
testcase_45 AC 93 ms
15,064 KB
testcase_46 AC 85 ms
14,936 KB
testcase_47 AC 107 ms
16,328 KB
testcase_48 AC 93 ms
15,048 KB
testcase_49 AC 78 ms
14,500 KB
testcase_50 AC 94 ms
15,140 KB
testcase_51 AC 95 ms
15,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def main
  @N = int
  @A = ints
  zeros = @A.map { |x| x == 0 ? 1 : 0 }.cumsum
  ans = 0
  (0 ... @N).each do |l|
    r = ((l .. @N).bsearch { |r| zeros[r] - zeros[l] > 0 } || @N + 1) - 1
    ans += @N - r
  end
  puts ans
end

DEBUG = true
MOD = 10**9+7
YESNO = %w(No Yes)
INF = 10**9

def int; gets.to_s.to_i end
def ints; gets.to_s.split.map { |s| s.to_i } end
def int1s; gets.to_s.split.map { |s| s.to_i - 1 } end
def intss(n); Array.new(n) { ints }; end
def float; gets.to_s.to_f end
def floats; gets.to_s.split.map { |s| s.to_f } end
def array_of(&convert); gets.to_s.split.map(&convert) end
def string; gets.to_s.chomp end
def rep(n, &b); Array.new(n, &b) end
def yes; puts YESNO[1] end
def no; puts YESNO[0] end
def yesno t; puts YESNO[t] end
def zip(xs, *yss); Enumerator.new { |y| xs.zip(*yss) { |a| y.yield(*a) } } end
def max(*xs, &block); block_given? ? xs.max_by(&block) : xs.max end
def min(*xs, &block); block_given? ? xs.min_by(&block) : xs.min end
def minmax(*xs, &block); block_given? ? xs.minmax_by(&block) : xs.minmax end
def gcd(*xs); xs.inject(0, :gcd) end
def matrix(h, w, fill=nil, &block); return Array.new(h) { Array.new(w, &block) } if block_given?; Array.new(h) { [fill] * w } end
def debug(x = nil); STDERR.puts (block_given? ? yield(x) : x).inspect if DEBUG; x end
def debug_grid(grid, width = 1); grid.each { |row| STDERR.puts row.map { |x| x.inspect.ljust(width) }.join("") } if DEBUG; grid end
def if_debug; yield if DEBUG end

module Boolean
  def coerce(other); [other, to_i] end
  def +@; to_i end
  def to_int; to_i end
  def *(other); to_i * other end
end

class TrueClass
  include Boolean
  def to_i; 1 end
end

class FalseClass
  include Boolean
  def to_i; 0 end
end

class Integer
  def div_ceil(y); (self + y - 1) / y end
  def mod_inv(mod = MOD); pow(mod-2, mod) end
  def mod_div(y, mod = MOD); self * mod_inv(y, mod) % mod end
  def factorial(mod = MOD); (2..self).inject(1) { |f, x| f * x % mod } end
  def popcount; x = self; c = 0; while x > 0; c += 1 if x & 1 == 1; x >>= 1 end; c end #TODO: faster
  def bitbrute(&block); (1<<self).times(&block) end
  def nCr(r); x = 1; (1..r).each { |i| x *= self + 1 - i; x /= i }; x; end
  def each_divisor; return Enumerator.new { |y| each_divisor { |k| y << k } } unless block_given?; k = 1; while k * k < self; if self % k == 0; yield k; yield self / k end; k += 1; end; yield k if k * k == self end
  def divisors; each_divisor.to_a end
end

class Range
  def end_open; exclude_end? ? self.end : self.end + 1 end
  def end_close; exclude_end? ? self.end - 1 : self.end end
  def upper_bound; ac, wa = self.begin, self.end_open; while wa - ac > 1; if yield((wj = (ac + wa) / 2)); ac = wj else wa = wj end; end; yield(ac) ? ac : nil end
  def lower_bound; ac, wa = self.end_open, self.begin; while ac - wa > 1; if yield((wj = (ac + wa) / 2)); ac = wj else wa = wj end; end; yield(ac) ? ac : nil end
  def shakutori(r2, &pred); Enumerator.new { |y| j, r = r2.begin, r2.end_open; each { |i| j += 1 while j + 1 < r and pred[i, j+1]; y.yield(i, j) } }; end
  def widest(&block); Enumerator.new { |y| j, n = self.begin, self.end_open; each { |i| j += 1 while j < n and block[i, j]; y.yield(i, j) if block[i, j] } } end
  def pairs; Enumerator.new { |y| l, r = self.begin, self.end_open; i = l; while i < r - 1; j = i + 1; while j < r; y.yield(i, j); j += 1 end; i += 1 end } end
end

class Array
  def power(&block); (0 ... 1 << size).each(&block) end
  def sorted_merge(other); a = []; i = j = 0; n, m = size, other.size; if j < m and other[j] < self[i]; a << other[j]; j += 1 else; a << self[i]; i += 1 end while i < n; a.push(*other[j..-1]) if j < m; a end
  def upper_bound; ac, wa = 0, size; while wa - ac > 1; if yield(self[(wj = (ac + wa) / 2)]); ac = wj else; wa = wj end; end; ac end
  def lower_bound; ac, wa = size, 0; while wa - ac > 1; if yield(self[(wj = (ac + wa) / 2)]); ac = wj else; wa = wj end; end; ac end
  def cum(*xs, &op); a = []; a << xs[0] if xs.size > 0; a << x = self[0]; (1...size).each { |i| a << x = op[x, self[i]] }; a end
  def cumdiff(range); self[range.end_open] - self[range.begin]; end
end

module Enumerable
  def sorted_uniq; x = nil; filter { |y| c = x === y; x = y; !c } end
  def cumsum; ys = [0]; each { |x| ys << x + ys[-1] }; ys end
end

main
0