結果
問題 | No.2411 Reverse Directions |
ユーザー | keisuke6 |
提出日時 | 2023-08-11 22:44:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,632 bytes |
コンパイル時間 | 2,565 ms |
コンパイル使用メモリ | 221,556 KB |
実行使用メモリ | 24,448 KB |
最終ジャッジ日時 | 2024-11-18 17:45:28 |
合計ジャッジ時間 | 44,658 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,496 KB |
testcase_01 | AC | 2 ms
24,448 KB |
testcase_02 | AC | 2 ms
13,636 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 5 ms
10,496 KB |
testcase_05 | AC | 1 ms
23,040 KB |
testcase_06 | AC | 1 ms
10,496 KB |
testcase_07 | AC | 23 ms
19,980 KB |
testcase_08 | AC | 2 ms
10,496 KB |
testcase_09 | AC | 2 ms
8,704 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 16 ms
10,880 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | AC | 5 ms
10,624 KB |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | AC | 2 ms
23,424 KB |
testcase_20 | TLE | - |
testcase_21 | AC | 24 ms
19,584 KB |
testcase_22 | TLE | - |
testcase_23 | AC | 26 ms
14,848 KB |
testcase_24 | TLE | - |
testcase_25 | AC | 7 ms
5,248 KB |
testcase_26 | AC | 5 ms
5,248 KB |
testcase_27 | AC | 13 ms
6,400 KB |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | AC | 36 ms
19,620 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long signed main(){ int H,W,K,L,R; cin>>H>>W>>K>>L>>R; vector<vector<char>> S(H,vector<char>(W)); for(int i=0;i<H;i++)for(int j=0;j<W;j++) cin>>S[i][j]; vector<vector<int>> G(H*W); for(int i=0;i<H;i++)for(int j=0;j<W;j++){ if(S[i][j] == '#') continue; if(i != 0 && S[i-1][j] == '.') G[i*W+j].push_back(i*W+j-W); if(i != H-1 && S[i+1][j] == '.') G[i*W+j].push_back(i*W+j+W); if(j != 0 && S[i][j-1] == '.') G[i*W+j].push_back(i*W+j-1); if(j != W-1 && S[i][j+1] == '.') G[i*W+j].push_back(i*W+j+1); } vector<int> dist(H*W,1e18); vector<int> seen(H*W,1e18); seen[H*W-1] = 0; dist[0] = 0; queue<int> q; q.push(0); while(!q.empty()){ int pos = q.front(); q.pop(); for(int x:G[pos]){ if(dist[x] != 1e18) continue; dist[x] = dist[pos] + 1; q.push(x); } } q.push(H*W-1); while(!q.empty()){ int pos = q.front(); q.pop(); for(int x:G[pos]){ if(seen[x] != 1e18) continue; seen[x] = seen[pos] + 1; q.push(x); } } if(dist[H*W-1] == 1e18 || dist[H*W-1]%2 != K%2 || (R-L)%2 == 0){ cout<<"No"<<endl; return 0; } for(int i=0;i<H;i++)for(int j=0;j<W;j++){ if(S[i][j] == '#' || dist[i*W+j] >= L || seen[i*W+j] > K-R || dist[i*W+j]%2 == L%2 || seen[i*W+j]%2 != (K-R)%2 || dist[i*W+j] == 1e18 || seen[i*W+j] == 1e18) continue; bool a = (i != 0 && i != H-1 && S[i-1][j] == '.' && S[i+1][j] == '.'); bool b = (j != 0 && j != W-1 && S[i][j-1] == '.' && S[i][j+1] == '.'); if(a){ cout<<"Yes"<<endl; string s = "", t = "", ans = ""; int now = i*W+j; while(now != 0){ for(int x:G[now]){ if(dist[x]+1 == dist[now]){ if(x == now-1) s += 'R'; if(x == now+1) s += 'L'; if(x == now-W) s += 'D'; if(x == now+W) s += 'U'; now = x; break; } } } now = H*W-1; vector<int> distt(H*W,1e18); distt[i*W+j] = 0; q.push(i*W+j); while(!q.empty()){ int pos = q.front(); q.pop(); for(int x:G[pos]){ if(distt[x] != 1e18) continue; distt[x] = distt[pos] + 1; q.push(x); } } while(now != i*W+j){ for(int x:G[now]){ if(distt[x]+1 == distt[now]){ if(x == now-1) t += 'R'; if(x == now+1) t += 'L'; if(x == now-W) t += 'D'; if(x == now+W) t += 'U'; now = x; break; } } } reverse(s.begin(),s.end()); reverse(t.begin(),t.end()); for(int k=dist[i*W+j]+1;k<K-(distt[H*W-1]-distt[i*W+j]);k+=2){ s += 'U'; s += 'D'; } ans = s+t; cout<<ans<<endl; return 0; } if(b){ cout<<"Yes"<<endl; string s = "", t = "", ans = ""; int now = i*W+j; while(now != 0){ for(int x:G[now]){ if(dist[x]+1 == dist[now]){ if(x == now-1) s += 'R'; if(x == now+1) s += 'L'; if(x == now-W) s += 'D'; if(x == now+W) s += 'U'; now = x; break; } } } now = H*W-1; vector<int> distt(H*W,1e18); distt[i*W+j] = 0; q.push(i*W+j); while(!q.empty()){ int pos = q.front(); q.pop(); for(int x:G[pos]){ if(distt[x] != 1e18) continue; distt[x] = distt[pos] + 1; q.push(x); } } while(now != i*W+j){ for(int x:G[now]){ if(distt[x]+1 != distt[now]){ if(x == now-1) t += 'R'; if(x == now+1) t += 'L'; if(x == now-W) t += 'D'; if(x == now+W) t += 'U'; now = x; break; } } } reverse(s.begin(),s.end()); reverse(t.begin(),t.end()); for(int k=dist[i*W+j]+1;k<K-(distt[H*W-1]-distt[i*W+j]);k+=2){ s += 'L'; s += 'R'; } ans = s+t; cout<<ans<<endl; return 0; } } cout<<"No"<<endl; }