結果

問題 No.2708 Jewel holder
ユーザー 若杉勇弥若杉勇弥
提出日時 2024-11-01 21:41:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,154 bytes
コンパイル時間 927 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-01 21:41:06
合計ジャッジ時間 2,065 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

#define MAXMONEY 300

int H, W;
vector<vector<int>> cells;

int check()
{
    char cell;
    cin >> cell;
    if (cell == 'o')
        return 1;
    else if (cell == 'x')
        return -1;
    else
        return 0;
}

int walk(int i, int j, int sum)
{
    int cnt = 0;
    if (cells[i][j] == 0) // 通行止め
        return cnt;
    else // 通行可能
        sum += cells[i][j];
    if (sum < 0)
        return cnt;
    // cout << i << ' ' << j << ' ' << sum << endl;

    if (i == H - 1 && j == W - 1) // goal
        return 1 ? sum > 0 : 0;

    if (i < H - 1)
        cnt += walk(i + 1, j, sum); // down
    if (j < W - 1)
        cnt += walk(i, j + 1, sum); // right

    return cnt;
}

int main()
{
    cin >> H >> W;
    cells = vector<vector<int>>(H, vector<int>(W));
    for (int i = 0; i < H; ++i)
    {
        for (int j = 0; j < W; ++j)
        {
            cells[i][j] = check();
            // cout << cells[i][j] << ' ';
        }
        // cout << endl;
    }

    int cnt = walk(0, 0, 0);
    // cout << H << W << endl;
    cout << cnt << endl;
}
0