結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 225 ms
19,584 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 315 ms
17,152 KB
testcase_04 AC 368 ms
17,664 KB
testcase_05 AC 445 ms
19,584 KB
testcase_06 AC 327 ms
17,408 KB
testcase_07 AC 409 ms
19,584 KB
testcase_08 AC 517 ms
19,968 KB
testcase_09 AC 345 ms
17,792 KB
testcase_10 AC 375 ms
17,920 KB
testcase_11 AC 403 ms
18,048 KB
testcase_12 AC 97 ms
12,672 KB
testcase_13 AC 139 ms
13,312 KB
testcase_14 AC 137 ms
13,696 KB
testcase_15 AC 89 ms
12,160 KB
testcase_16 AC 132 ms
13,056 KB
testcase_17 AC 91 ms
12,288 KB
testcase_18 AC 92 ms
12,032 KB
testcase_19 AC 97 ms
12,288 KB
testcase_20 AC 97 ms
12,416 KB
testcase_21 AC 92 ms
12,288 KB
testcase_22 AC 158 ms
13,568 KB
testcase_23 AC 90 ms
12,032 KB
testcase_24 AC 91 ms
12,032 KB
testcase_25 AC 211 ms
15,104 KB
testcase_26 AC 94 ms
12,288 KB
testcase_27 AC 91 ms
12,160 KB
testcase_28 AC 106 ms
12,672 KB
testcase_29 AC 90 ms
12,032 KB
testcase_30 AC 100 ms
12,544 KB
testcase_31 AC 89 ms
12,032 KB
testcase_32 AC 93 ms
12,032 KB
testcase_33 AC 91 ms
12,160 KB
testcase_34 AC 93 ms
12,160 KB
testcase_35 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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(s.size, false)

def parse(s, pos)
  if pos >= s.size
    return nil
  end
  if $memo[pos] != false
    return $memo[pos]
  end
  res = nil
  nxt = nil
  res, nxt = parse_mul(s, pos)
  if res.nil?
    return $memo[pos]=nil
  end
  res2 = nil
  nxt2 = nil
  if s[nxt] == '+'
    res2, nxt2 = parse(s, nxt + 1)
    if res2.nil?
      return $memo[pos]=nil
    end
    return $memo[pos] = [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