結果
| 問題 | 
                            No.1133 キムワイプイーター
                             | 
                    
| ユーザー | 
                             | 
                    
| 提出日時 | 2020-11-06 20:12:24 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 13 ms / 2,000 ms | 
| コード長 | 765 bytes | 
| コンパイル時間 | 2,121 ms | 
| コンパイル使用メモリ | 198,332 KB | 
| 最終ジャッジ日時 | 2025-01-15 20:05:21 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 31 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for(int i=0; i<(int)(n); i++)
#define FOR(i,b,e) for (int i=(int)(b); i<(int)(e); i++)
#define ALL(x) (x).begin(), (x).end()
const double PI = acos(-1);
int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);
  int n, m;
  cin >> n >> m;
  vector<vector<bool> > vis(n+1, vector<bool>(n+1));
  vis[0][0] = true;
  
  int y = 0;
  int x = 0;
  string s;
  cin >> s;
  for (char c: s) {
    if (c == 'U') ++y;
    else if (c == 'D') --y;
    else if (c == 'R') ++x;
    else --x;
    vis[y][x] = true;
  }
  REP (i, n+1) {
    REP (j, n+1) {
      if (j) 
        cout << " ";
      if (vis[n-i][j])
        cout << 0;
      else
        cout << 1;
    }
    cout << endl;
  }
  
  return 0;
}