結果
問題 | No.611 Day of the Mountain |
ユーザー | WA_TLE |
提出日時 | 2017-12-11 00:54:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,244 bytes |
コンパイル時間 | 1,475 ms |
コンパイル使用メモリ | 141,696 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-07 17:02:54 |
合計ジャッジ時間 | 2,572 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 133 ms
6,944 KB |
testcase_02 | AC | 133 ms
6,944 KB |
testcase_03 | AC | 174 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
ソースコード
#include<deque> #include<queue> #include<vector> #include<algorithm> #include<iostream> #include<set> #include<cmath> #include<tuple> #include<string> #include<chrono> #include<functional> #include<iterator> #include<random> #include<unordered_set> #include<unordered_map> #include<array> #include<map> #include<bitset> #include<iomanip> using namespace std; typedef long long int llint; typedef long double lldo; #define mp make_pair #define mt make_tuple #define pub push_back #define puf push_front #define pob pop_back #define pof pop_front #define fir first #define sec second #define res resize #define ins insert #define era erase //ios::sync_with_stdio(false); //std::cin.tie(0); //<< setprecision(20) const int mod=201712111; const llint big=1e15+100; const long double pai=3.141592653589793238462643383279502884197; const long double ena=2.71828182845904523536; const long double eps=1e-7; template <class T,class U>void mineq(T& a,U b){if(a>b){a=b;}} template <class T,class U>void maxeq(T& a,U b){if(a<b){a=b;}} template <class T> void soun(T& ar) {sort(ar.begin(),ar.end());ar.erase(unique(ar.begin(),ar.end()),ar.end());} llint gcd(llint a,llint b){if(a%b==0){return b;}else return gcd(b,a%b);} llint lcm(llint a,llint b){return a/gcd(a,b)*b;} int main(void){ int i,j,h,w,bi;cin>>h>>w; vector<string>kyuri(h);//山なので for(i=0;i<h;i++){cin>>kyuri[i];} if(h<w){ vector<string>ne(w);//ぬえっ! for(i=0;i<w;i++){ne[i].res(h);} for(i=0;i<h;i++){ for(j=0;j<w;j++){ ne[j][i]=kyuri[i][j]; } } swap(h,w); swap(kyuri,ne); } //w>hになったw<=18 //bitDPPPPPPPPP vector<vector<int>>time(h); for(i=0;i<h;i++){ time[i].res(w); for(j=0;j<w;j++){ if(i==0&&j==0){time[i][j]=0;}//(0ではない) else if(i==0){time[i][j]=time[i][j-1];} else if(j==0){time[i][j]=time[i-1][j];} else{time[i][j]=min(time[i][j-1],time[i-1][j]);} if(kyuri[i][j]=='?'){time[i][j]++;} else{time[i][j]+=kyuri[i][j]-'0';} } } int T=time[h-1][w-1]; cout<<T<<endl; vector<vector<int>>Rtime(h); for(i=h-1;i>=0;i--){ Rtime[i].res(w); for(j=w-1;j>=0;j--){ if(i==h-1&&j==w-1){Rtime[i][j]=0;} else if(i==h-1){Rtime[i][j]=Rtime[i][j+1];} else if(j==w-1){Rtime[i][j]=Rtime[i+1][j];} else{Rtime[i][j]=min(Rtime[i][j+1],Rtime[i+1][j]);} if(kyuri[i][j]=='?'){Rtime[i][j]++;} else{Rtime[i][j]+=kyuri[i][j]-'0';} } } vector<vector<int>>just(h); for(i=0;i<h;i++){ just[i].res(w); for(j=0;j<w;j++){ int kor; if(kyuri[i][j]=='?'){kor=1;} else{kor=kyuri[i][j]-'0';} if(Rtime[i][j]+time[i][j]==T+kor){just[i][j]=1;} else{just[i][j]=0;} } } vector<llint>bdp(1<<w); bdp[1]=1; for(i=0;i<h;i++){ for(j=0;j<w;j++){ if(i==0&&j==0){continue;} vector<llint>ndp(1<<w); int bji=(1<<j); for(bi=0;bi<(1<<w);bi++){ if(just[i][j]!=1&&kyuri[i][j]=='?'){ndp[bi-(bi&bji)]+=bdp[bi]*9;continue;} else if(just[i][j]!=1){ndp[bi-(bi&bji)]+=bdp[bi];continue;} if(j!=0&&(bi&(bji/2))!=0){ndp[bi|bji]+=bdp[bi];} else{ndp[bi]+=bdp[bi];} if(kyuri[i][j]=='?'){ndp[bi-(bi&bji)]+=bdp[bi]*8;} } for(bi=0;bi<(1<<w);bi++){ndp[bi]%=mod;} bdp=move(ndp); } } llint ans=0; for(bi=(1<<(w-1));bi<(1<<w);bi++){ans+=bdp[bi];ans%=mod;} cout<<ans<<endl; return 0; }