結果
問題 | No.232 めぐるはめぐる (2) |
ユーザー | pekempey |
提出日時 | 2015-06-27 00:40:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 138 ms / 1,000 ms |
コード長 | 2,102 bytes |
コンパイル時間 | 1,581 ms |
コンパイル使用メモリ | 163,824 KB |
実行使用メモリ | 7,504 KB |
最終ジャッジ日時 | 2024-09-14 12:33:03 |
合計ジャッジ時間 | 3,436 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
7,496 KB |
testcase_01 | AC | 136 ms
7,504 KB |
testcase_02 | AC | 137 ms
7,500 KB |
testcase_03 | AC | 138 ms
7,496 KB |
testcase_04 | AC | 9 ms
7,500 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 96 ms
7,500 KB |
testcase_09 | AC | 6 ms
5,452 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:54:17: warning: ‘dx’ may be used uninitialized in this function [-Wmaybe-uninitialized] 54 | int nx = x + dx; | ^~ main.cpp:53:17: warning: ‘dy’ may be used uninitialized in this function [-Wmaybe-uninitialized] 53 | int ny = y + dy; | ^~
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); i++) #define rep2(i, a, b) for (int i = (a); i < (b); i++) #define rrep(i, n) for (int i = (n) - 1; i >= 0; i--) #define rrep2(i, a, b) for (int i = (a) - 1; i >= (b); i--) #define all(v) (v).begin(), (v).end() using namespace std; typedef long long ll; const ll inf = 1e9; const ll mod = 1e9 + 7; string get(int dx, int dy) { string s; if (dy > 0) s += "^"; if (dy < 0) s += "v"; if (dx > 0) s += ">"; if (dx < 0) s += "<"; return s; } int main() { int T, A, B; cin >> T >> B >> A; int x = 0, y = 0; vector<string> ans; if (T == 1 && A == 0 && B == 0) { cout << "NO" << endl; return 0; } rep (i, T) { if (i == 0 && x == A && y == B) { ans.push_back(get(-1, -1)); x = -1; y = -1; } else if (i < T - 1) { int dy, dx; if (x < A && y < B) { dy = 1; dx = 1; } else if (x < A) { dy = 0; dx = 1; } else if (y < B) { dy = 1; dx = 0; } int ny = y + dy; int nx = x + dx; if (nx == A && ny == B) { if (y < B) { if (x < A) dx = 1, dy = 0; if (x == A) dx = -1, dy = 0; } else { if (y < B) dy = 1, dx = 0; if (y == B) dy = -1, dx = 0; } ny = y + dy; nx = x + dx; } ans.push_back(get(dx, dy)); y = ny; x = nx; } else { int dx = A - x; int dy = B - y; if (abs(dx) > 1 || abs(dy) > 1) { cout << "NO" << endl; } else { string s; cout << "YES" << endl; ans.push_back(get(dx, dy)); for (string e : ans) { cout << e << endl; } } } } }