結果

問題 No.1133 キムワイプイーター
ユーザー yansi819
提出日時 2024-03-25 21:29:19
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 4,264 ms
コンパイル使用メモリ 252,552 KB
最終ジャッジ日時 2025-02-20 13:49:04
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;

int main() {
  int n, m;
  cin >> n >> m;
  string s;
  cin >> s;
  vector<vector<int>> grid(n + 1, vector<int>(n + 1, 1));
  grid[n][0] = 0;
  int x = 0, y = n;
  for (int i = 0; i < m; i++) {
    if (s[i] == 'U') y--;
    if (s[i] == 'D') y++;
    if (s[i] == 'R') x++;
    if (s[i] == 'L') x--;
    grid[y][x] = 0;
  }
  for (int i = 0; i <= n; i++) {
    for (int j = 0; j <= n; j++) cout << grid[i][j] << " \n"[j == n];
  }
  return 0;
}
0