結果

問題 No.4 おもりと天秤
ユーザー osada-yum
提出日時 2023-10-30 16:17:46
言語 Fortran
(gFortran 14.2.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 821 bytes
コンパイル時間 1,709 ms
コンパイル使用メモリ 33,792 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-25 17:17:36
合計ジャッジ時間 2,555 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

program yukicoder_4
  use, intrinsic :: iso_fortran_env
  implicit none
  integer(int32) :: n, sum_w
  integer(int32), allocatable :: ws(:)
  logical, allocatable :: dp(:, :)
  integer(int32) :: i, j, bef
  read(input_unit, *) n
  allocate(ws(n))
  read(input_unit, *) ws(:)
  sum_w = sum(ws(:))
  if (iand(sum_w, b'1') == 1) then
     write(output_unit, '(a)') "impossible"
     stop
  end if
  !> sum_w is even.
  allocate(dp(0:sum_w / 2, 0:n), source = .false.)
  dp(0, 0) = .true.
  do i = 1, n
     dp(:, i) = dp(:, i - 1)
     do j = 0, sum_w / 2
        bef = j - ws(i)
        if (bef < 0) cycle
        !> bef >= 0
        if (.not. dp(bef, i - 1)) cycle
        dp(j, i) = .true.
     end do
  end do
  write(output_unit, '(a)') trim(merge("possible  ", "impossible", dp(sum_w / 2, n)))
end program yukicoder_4
0