結果

問題 No.2708 Jewel holder
ユーザー 伊藤遼伊藤遼
提出日時 2024-11-01 20:49:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 1,806 bytes
コンパイル時間 3,261 ms
コンパイル使用メモリ 153,836 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-01 20:49:56
合計ジャッジ時間 4,150 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <math.h>
#include <queue>
#include <numeric>
#include <map>
#include <atcoder/all>
using namespace atcoder;
using namespace std;

using ll = long long;

#define Sort(a) sort((a).begin(), (a).end())
#define Rev(a) reverse((a).begin(), (a).end())
#define cfs(a) cout << fixed << setprecision(a)



int main()
{
    ll H, W;
    cin >> H >> W;
    vector<string> A(H);
    for (int i = 0; i < H; i++)
    {
        cin >> A[i];
    }
    ll all = (H - 1) + (W - 1);
    ll ans = 0;
    for (ll i = 0; i < pow(2, all); i++)
    {
        bool ok = true;
        ll have = 1;
        ll now_h = 0;
        ll now_w = 0;
        ll div = 1;
        ll rem = i;
        for (ll j = 0; j < all; j++)
        {
            rem /= div;
            if (rem % 2 == 0)
            {
                now_h++;
                if (now_h >= H)
                {
                    ok = false;
                }
            }
            else
            {
                now_w++;
                if (now_w >= W)
                {
                    ok = false;
                }
            }
            div *= 2;
            rem = i;
            if (!ok)
            {
                break;
            }
            if (A[now_h][now_w] == '#')
            {
                ok = false;
                break;
            }
            if (A[now_h][now_w] == 'o')
            {
                have++;
            }
            if (A[now_h][now_w] == 'x')
            {
                have--;
                if (have < 0)
                {
                    ok = false;
                    break;
                }
            }
        }
        if (ok)
        {
            ans++;
        }
    }
    cout << ans << endl;
}
0