結果
| 問題 |
No.232 めぐるはめぐる (2)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-03-19 00:18:03 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,328 bytes |
| コンパイル時間 | 1,522 ms |
| コンパイル使用メモリ | 166,092 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-19 09:04:45 |
| 合計ジャッジ時間 | 4,666 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 WA * 11 |
ソースコード
//{{{
#include <bits/stdc++.h>
using namespace std;
#define repX(a,b,c,x,...) x
#define repN(a) repX a
#define rep(...) repN((__VA_ARGS__,rep3,rep2,loop))(__VA_ARGS__)
#define rrep(...) repN((__VA_ARGS__,rrep3,rrep2))(__VA_ARGS__)
#define loop(n) rep2(i_,n)
#define rep2(i,n) rep3(i,0,n)
#define rep3(i,begin,end) for(int i=(int)(begin),i##_end=(int)(end);i<i##_end;++i)
#define rrep2(i,n) rrep3(i,n,0)
#define rrep3(i,begin,end) for(int i=(int)(begin-1),i##_end=(int)(end);i>=i##_end;--i)
#define foreach(x,a) for(auto&x:a)
using ll=long long;
const ll mod=(ll)1e9+7;
//}}}
int main(){
ll T, A, B;
cin >> T >> A >> B;
bool ans = true;
if(abs(A) > T || abs(B) > T){
ans = false;
}
if(T == 1 && A == 0 && B == 0){
ans = false;
}
if(!ans){
puts("NO");
return 0;
}
puts("YES");
int x = 0;
int y = 0;
auto moveY = [&] (int dy) {
y += dy;
printf(dy == 1 ? "^" : "v");
};
auto moveX = [&] (int dx) {
x += dx;
printf(dx == 1 ? ">" : "<");
};
rep(t, 1, T + 1){
if(t == 1 && (T - A) % 2 != 0){
moveY(B - y > 0 ? 1 : -1);
puts("");
continue;
}
if(t == T && (T - B) % 2 != 0){
moveX(A - x > 0 ? 1 : -1);
puts("");
continue;
}
moveX(A - x > 0 ? 1 : -1);
moveY(B - y > 0 ? 1 : -1);
puts("");
}
return 0;
}