結果

問題 No.2708 Jewel holder
ユーザー tnakao0123tnakao0123
提出日時 2024-04-30 09:46:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,095 bytes
コンパイル時間 651 ms
コンパイル使用メモリ 63,096 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-30 09:46:44
合計ジャッジ時間 1,784 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2708.cc:  No.2708 Jewel holder - yukicoder
 */

#include<cstdio>
#include<map>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_H = 10;
const int MAX_W = 10;

/* typedef */

typedef long long ll;
typedef map<int,ll> mil;

/* global variables */

char fs[MAX_H][MAX_W + 4];
mil ds[MAX_H][MAX_W];

/* subroutines */

/* main */

int main() {
  int h, w;
  scanf("%d%d", &h, &w);
  for (int y = 0; y < h; y++) scanf("%s", fs[y]);

  ds[0][0][1] = 1;
  for (int y = 0; y < h; y++)
    for (int x = 0; x < w; x++)
      if (! ds[y][x].empty()) {
	if (y + 1 < h && fs[y + 1][x] != '#') {
	  int dd = (fs[y + 1][x] == 'o') ? 1 : -1;
	  for (auto [ud, uc]: ds[y][x]) {
	    int vd = ud + dd;
	    if (vd >= 0) ds[y + 1][x][vd] += uc;
	  }
	}
	if (x + 1 < w && fs[y][x + 1] != '#') {
	  int dd = (fs[y][x + 1] == 'o') ? 1 : -1;
	  for (auto [ud, uc]: ds[y][x]) {
	    int vd = ud + dd;
	    if (vd >= 0) ds[y][x + 1][vd] += uc;
	  }
	}
      }

  ll sum = 0;
  for (auto [d, c]: ds[h - 1][w - 1]) sum += c;

  printf("%lld\n", sum);

  return 0;
}
0