結果
| 問題 | No.1133 キムワイプイーター |
| ユーザー |
|
| 提出日時 | 2024-03-25 21:27:12 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 583 bytes |
| 記録 | |
| コンパイル時間 | 4,285 ms |
| コンパイル使用メモリ | 251,160 KB |
| 最終ジャッジ日時 | 2025-02-20 13:48:47 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 RE * 1 |
| other | AC * 4 RE * 27 |
ソースコード
#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;
}