結果

問題 No.232 めぐるはめぐる (2)
ユーザー kichirb3kichirb3
提出日時 2018-04-02 15:48:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 183 ms / 1,000 ms
コード長 3,250 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-09-14 12:44:48
合計ジャッジ時間 2,752 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
14,208 KB
testcase_01 AC 183 ms
18,944 KB
testcase_02 AC 143 ms
14,080 KB
testcase_03 AC 154 ms
14,080 KB
testcase_04 AC 31 ms
11,008 KB
testcase_05 AC 31 ms
11,008 KB
testcase_06 AC 31 ms
11,008 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 131 ms
15,872 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 31 ms
11,008 KB
testcase_12 AC 31 ms
11,008 KB
testcase_13 AC 31 ms
11,008 KB
testcase_14 AC 32 ms
10,880 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 31 ms
11,008 KB
testcase_17 AC 31 ms
11,008 KB
testcase_18 AC 33 ms
11,136 KB
testcase_19 AC 31 ms
11,008 KB
testcase_20 AC 31 ms
10,880 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 AC 31 ms
11,008 KB
testcase_23 AC 30 ms
11,008 KB
testcase_24 AC 31 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
"""
No.232 めぐるはめぐる (2)
https://yukicoder.me/problems/no/232

"""
import sys
from sys import stdin
input = stdin.readline

cx, cy = 0, 0                          # 現在の座標

def last_step(steps, gx, gy):
    # 次の移動でゴール地点に飛び込むための移動コマンドを入力
    nx, ny = '', ''
    if cx < gx:
        nx = '>'
    elif cx > gx:
        nx = '<'
    if cy < gy:
        ny = '^'
    elif cy > gy:
        ny = 'v'
    steps.append('{}{}'.format(nx, ny))


def guruguru(steps, gx, gy):
    # ゴール地点の周辺を時計周りにグルグルする
    # (「各行は 1 文字ないし 2 文字の文字列を出力すればいい」ので、移動しない('')という選択は無し)
    global cx, cy
    dx = gx - cx
    dy = gy - cy
    if dx == 1 and dy == 1:
        steps.append('^')
        cy += 1
    elif dx == 1 and dy == 0:
        steps.append('^')
        cy += 1
    elif dx == 1 and dy == -1:
        steps.append('>')
        cx += 1
    elif dx == 0 and dy == -1:
        steps.append('>')
        cx += 1
    elif dx == -1 and dy == -1:
        steps.append('v')
        cy -= 1
    elif dx == -1 and dy == 0:
        steps.append('v')
        cy -= 1
    elif dx == -1 and dy == 1:
        steps.append('<')
        cx -= 1
    else:
        steps.append('<')
        cx -= 1

def one_step_closer(steps, gx, gy):
    # 最短ルートでゴール地点に近づく(ただし、ゴール地点には飛び込まない)
    global cx, cy
    nx, ny = '', ''
    dx = gx - cx
    dy = gy - cy
    if max(abs(dx), abs(dy)) <= 1:
        guruguru(steps, gx, gy)
    else:
        if dx > 0:
            nx = '>'
            cx += 1
        elif dx < 0:
            nx = '<'
            cx -= 1
        if dy > 0:
            ny = '^'
            cy += 1
        elif dy < 0:
            ny = 'v'
            cy -= 1
        steps.append('{}{}'.format(nx, ny))


def solve(T, A, B):
    ans = []                    # コントローラから入力する移動キー
    global cx, cy              # 現在の座標
    gx, gy = B, A               # ゴール地点の座長

    # 特殊ケース
    if gx > T or gy > T:       # ななめに移動しても間に合わないケース
        return ans
    if cx == gx and cy == gy:  #  スタート地点とゴール地点が同じ場合
        if T == 1:
            return ans         # 最初からゴール地点にいるので、1ターン目でゴールに「到着」することはできない
        else:
            ans.append('{}{}'.format('>', ''))
            cx += 1
            T -= 1

    # 通常ケース
    while T:
        if T == 1:              # 最後の1ターンでゴール地点に飛び込む
            last_step(ans, gx, gy)
            return ans
        else:
            one_step_closer(ans, gx, gy)  # 最短距離でゴールに近づく。ターンに余裕があればゴール周辺でグルグルする
            T -= 1


def main(args):
    T, A, B = map(int, input().split())
    ans = solve(T, A, B)
    if not ans:
        print('NO')
    else:
        print('YES')
        print(*ans, sep='\n')


if __name__ == '__main__':
    main(sys.argv[1:])
0