結果

問題 No.265 数学のテスト
ユーザー koba-e964koba-e964
提出日時 2016-12-15 15:37:47
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 1,866 bytes
コンパイル時間 43 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,440 KB
最終ジャッジ日時 2024-11-30 08:25:08
合計ジャッジ時間 33,848 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
19,840 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 1,715 ms
19,200 KB
testcase_04 AC 1,792 ms
29,440 KB
testcase_05 TLE -
testcase_06 AC 1,774 ms
14,592 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 108 ms
12,672 KB
testcase_13 AC 357 ms
13,056 KB
testcase_14 AC 373 ms
13,440 KB
testcase_15 AC 90 ms
12,416 KB
testcase_16 AC 502 ms
13,568 KB
testcase_17 AC 92 ms
12,416 KB
testcase_18 AC 89 ms
12,416 KB
testcase_19 AC 95 ms
12,416 KB
testcase_20 AC 104 ms
12,672 KB
testcase_21 AC 88 ms
12,416 KB
testcase_22 AC 668 ms
13,696 KB
testcase_23 AC 88 ms
12,288 KB
testcase_24 AC 89 ms
12,416 KB
testcase_25 AC 921 ms
13,952 KB
testcase_26 AC 97 ms
12,416 KB
testcase_27 AC 94 ms
12,288 KB
testcase_28 AC 172 ms
13,312 KB
testcase_29 AC 95 ms
12,416 KB
testcase_30 AC 125 ms
12,672 KB
testcase_31 AC 91 ms
12,416 KB
testcase_32 AC 89 ms
12,416 KB
testcase_33 AC 89 ms
12,416 KB
testcase_34 AC 90 ms
12,288 KB
testcase_35 AC 92 ms
26,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Main.rb:112: warning: assigned but unused variable - pos
Syntax OK

ソースコード

diff #

n=gets.to_i
d=gets.to_i
s=gets.chomp

$memo = Array.new(50000, nil)

def parse(s, pos)
  if pos >= s.size
    return nil
  end
  if $memo[pos]
    return $memo[pos]
  end
  res = nil
  nxt = nil
  res, nxt = parse_mul(s, pos)
  if res.nil?
    return nil
  end
  res2 = nil
  nxt2 = nil
  if s[nxt] == '+'
    res2, nxt2 = parse(s, nxt + 1)
    if res2.nil?
      return nil
    end
    return [res + res2, nxt2]
  end
  return $memo[pos] = [res, nxt]
end
def parse_mul(s, pos)
  if pos >= s.size
    return nil
  end
  res = nil
  nxt = nil
  res, nxt = parse_simple(s, pos)
  if res.nil?
    return nil
  end
  res2 = nil
  nxt2 = nil
  if s[nxt] == '*'
    res2, nxt2 = parse_mul(s, nxt + 1)
    if res2.nil?
      return nil
    end
    return [mul(res, res2), nxt2]
  else
    return [res, nxt]
  end
end

def parse_simple(s, pos)
  res, nxt = parse_d(s, pos)
  if res
    return [res, nxt]
  end
  res, nxt = parse_obj(s, pos)
  if res
    return [res, nxt]
  end
  nil
end

def parse_d(s, pos)
  if s[pos] != 'd' || s[pos + 1] != '{'
    return nil
  end
  res, nxt = parse(s, pos + 2)
  if res.nil? || s[nxt] != '}'
    return nil
  end
  return [diff(res), nxt + 1]
end

def parse_obj(s, pos)
  if pos >= s.size
    return nil
  end
  if '0' <= s[pos] && s[pos] <= '9'
    return [[[s[pos].ord - 48, 0]], pos + 1]
  end
  if s[pos] == 'x'
    return [[[1, 1]], pos + 1]
  end
  nil
end

def diff(poly)
  res = []
  for p, q in poly
    if q >= 1
      res << [p * q, q - 1]
    end
  end
  res
end
def mul(poly1, poly2)
  res = []
  for p1, q1 in poly1
    for p2, q2 in poly2
      res << [p1 * p2, q1 + q2]
    end
  end
  res
end

for i in 0 ... s.size
  parse(s, s.size - i - 1)
end
result, pos = parse(s, 0)
poly = Array.new(d + 1, 0)
for p, q in result
  poly[q] += p
end
for i in 0 .. d
  print(poly[i])
  print(if i == d then "\n" else " " end)
end
0