結果

問題 No.265 数学のテスト
ユーザー koba-e964koba-e964
提出日時 2016-12-15 15:54:19
言語 Ruby
(3.4.1)
結果
AC  
実行時間 612 ms / 2,000 ms
コード長 2,261 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 23,808 KB
最終ジャッジ日時 2024-11-24 11:34:26
合計ジャッジ時間 8,422 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 223 ms
15,104 KB
testcase_01 AC 239 ms
16,640 KB
testcase_02 AC 612 ms
23,808 KB
testcase_03 AC 314 ms
16,640 KB
testcase_04 AC 391 ms
19,328 KB
testcase_05 AC 464 ms
20,096 KB
testcase_06 AC 324 ms
16,640 KB
testcase_07 AC 392 ms
20,224 KB
testcase_08 AC 541 ms
22,400 KB
testcase_09 AC 355 ms
18,944 KB
testcase_10 AC 379 ms
18,944 KB
testcase_11 AC 410 ms
19,968 KB
testcase_12 AC 85 ms
12,160 KB
testcase_13 AC 130 ms
13,312 KB
testcase_14 AC 125 ms
13,056 KB
testcase_15 AC 83 ms
12,416 KB
testcase_16 AC 127 ms
13,312 KB
testcase_17 AC 82 ms
12,160 KB
testcase_18 AC 77 ms
12,160 KB
testcase_19 AC 78 ms
12,160 KB
testcase_20 AC 82 ms
12,416 KB
testcase_21 AC 76 ms
12,288 KB
testcase_22 AC 148 ms
13,696 KB
testcase_23 AC 79 ms
12,288 KB
testcase_24 AC 78 ms
12,288 KB
testcase_25 AC 202 ms
14,208 KB
testcase_26 AC 82 ms
12,160 KB
testcase_27 AC 80 ms
12,160 KB
testcase_28 AC 94 ms
12,416 KB
testcase_29 AC 81 ms
12,288 KB
testcase_30 AC 89 ms
12,416 KB
testcase_31 AC 82 ms
12,160 KB
testcase_32 AC 82 ms
12,160 KB
testcase_33 AC 79 ms
12,288 KB
testcase_34 AC 78 ms
12,288 KB
testcase_35 AC 78 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Main.rb:129: 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)
$memo_mul = Array.new($s.size, false)

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

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

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

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

def diff(poly)
  d = poly.size - 1
  res = Array.new(d + 1, 0)
  for i in 0 .. d - 1
    res[i] = (i + 1) * poly[i + 1]
  end
  res
end
def mul(poly1, poly2)
  d = poly1.size - 1
  res = Array.new(d + 1, 0)
  for i in 0 .. d
    for j in 0 .. d - i
      res[i + j] += poly1[i] * poly2[j]
    end
  end
  res
end

def add(poly1, poly2)
  d = poly1.size - 1
  res = Array.new(d + 1, 0)
  for i in 0 .. d
    res[i] += poly1[i] + poly2[i]
  end
  res
end

for i in 0 ... $s.size
  parse($s.size - i - 1)
end
result, pos = parse(0)
for i in 0 .. $d
  print(result[i])
  print(if i == $d then "\n" else " " end)
end
0