結果

問題 No.2708 Jewel holder
ユーザー BBhorseBBhorse
提出日時 2024-03-31 13:51:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,074 bytes
コンパイル時間 1,618 ms
コンパイル使用メモリ 176,084 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-09-30 18:29:49
合計ジャッジ時間 2,234 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using ll=long long;
#define rep(i,s,n) for (ll i = (s); i < (n); i++)
using namespace std;
using Graph = vector<vector<ll>>;
ll MOD=1e9+7;
const ll INF=1e18;


int main(){
  ll h,w;
  cin>>h>>w;
  ll x0,y0,x1,y1;
  x0=0;y0=0;x1=h-1;y1=w-1;
  
  vector<char> G(h*w);

  rep(i,0,h){
    rep(j,0,w){
      cin>>G[i*w+j];
    }
  }

  vector<ll> J(h*w);
  vector<ll> C(h*w);
  vector<bool> seen(h*w);
  queue<ll> q;
  q.push(x0*w+y0);
  J[0]=0;
  C[0]=1;
  vector<ll> dx={1,0}; 
  vector<ll> dy={0,1};

  while(!q.empty()){
    ll v=q.front();
    q.pop();
    if(seen[v]) continue;
    seen[v]=true;
    ll vx=v/w;
    ll vy=v%w;
    if(G[v]=='o'){
      J[v]++;
    }
    else if(G[v]=='x'){
      J[v]--;
    }
    else{
      J[v]=0;
      C[v]=0;
    }

    rep(i,0,2){
      ll nx=vx+dx[i];
      ll ny=vy+dy[i];
      if(nx==x1 && ny==y1){
      }
      ll nv=nx*w+ny;
      if(nx>=0 && nx<h && ny>=0 && ny<w && !(G[nv]=='x' && J[v]<1)){
        J[nv]=J[v];
        C[nv]+=C[v];
        q.push(nv);
      }    
    }
  }
  cout<<C[h*w-1]<<endl;
}
0