結果

問題 No.1315 渦巻洞穴
ユーザー りあんりあん
提出日時 2020-12-01 02:49:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 1,612 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 13,520 KB
最終ジャッジ日時 2024-09-13 02:46:38
合計ジャッジ時間 20,842 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 30 ms
11,008 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 203 ms
12,032 KB
testcase_14 AC 166 ms
11,648 KB
testcase_15 AC 197 ms
11,520 KB
testcase_16 AC 223 ms
11,904 KB
testcase_17 AC 252 ms
11,884 KB
testcase_18 AC 225 ms
12,288 KB
testcase_19 AC 219 ms
11,900 KB
testcase_20 AC 302 ms
12,288 KB
testcase_21 AC 175 ms
12,080 KB
testcase_22 AC 279 ms
12,280 KB
testcase_23 AC 145 ms
11,520 KB
testcase_24 AC 216 ms
11,264 KB
testcase_25 AC 154 ms
11,520 KB
testcase_26 AC 200 ms
12,032 KB
testcase_27 AC 184 ms
11,832 KB
testcase_28 AC 178 ms
11,844 KB
testcase_29 AC 309 ms
12,664 KB
testcase_30 AC 274 ms
12,876 KB
testcase_31 AC 234 ms
12,160 KB
testcase_32 AC 150 ms
11,520 KB
testcase_33 AC 306 ms
12,276 KB
testcase_34 AC 257 ms
12,296 KB
testcase_35 AC 220 ms
11,904 KB
testcase_36 AC 286 ms
12,392 KB
testcase_37 AC 279 ms
12,060 KB
testcase_38 AC 242 ms
12,244 KB
testcase_39 AC 293 ms
12,800 KB
testcase_40 AC 279 ms
12,352 KB
testcase_41 AC 276 ms
13,276 KB
testcase_42 AC 308 ms
12,544 KB
testcase_43 AC 281 ms
13,280 KB
testcase_44 AC 412 ms
13,520 KB
testcase_45 AC 281 ms
13,276 KB
testcase_46 AC 412 ms
13,392 KB
testcase_47 AC 279 ms
13,272 KB
testcase_48 AC 300 ms
12,544 KB
testcase_49 AC 279 ms
13,264 KB
testcase_50 AC 272 ms
13,272 KB
testcase_51 AC 400 ms
13,392 KB
testcase_52 AC 270 ms
13,276 KB
testcase_53 AC 295 ms
12,544 KB
testcase_54 AC 326 ms
13,152 KB
testcase_55 AC 294 ms
12,672 KB
testcase_56 AC 269 ms
13,276 KB
testcase_57 AC 388 ms
13,328 KB
testcase_58 AC 275 ms
13,276 KB
testcase_59 AC 207 ms
12,032 KB
testcase_60 AC 219 ms
12,032 KB
testcase_61 AC 211 ms
11,904 KB
testcase_62 AC 254 ms
12,308 KB
testcase_63 AC 229 ms
12,160 KB
testcase_64 AC 239 ms
12,120 KB
testcase_65 AC 214 ms
11,904 KB
testcase_66 AC 231 ms
12,032 KB
testcase_67 AC 219 ms
12,032 KB
testcase_68 AC 283 ms
12,708 KB
testcase_69 AC 213 ms
12,160 KB
testcase_70 AC 228 ms
12,032 KB
testcase_71 AC 236 ms
12,252 KB
testcase_72 AC 283 ms
12,704 KB
testcase_73 AC 270 ms
12,352 KB
testcase_74 AC 227 ms
12,288 KB
testcase_75 AC 30 ms
10,880 KB
testcase_76 AC 31 ms
10,880 KB
testcase_77 AC 196 ms
11,648 KB
testcase_78 AC 198 ms
11,648 KB
testcase_79 AC 137 ms
11,520 KB
testcase_80 AC 228 ms
11,628 KB
testcase_81 AC 124 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def to_xy(num):
    dx = (1, 0, -1, 0)
    dy = (0, 1, 0, -1)
    k, p, d = 0, 1, 1
    x, y = 0, 0
    while p < num:
        for i in range(2):
            s = min(d, num - p)
            p += s
            x += s * dx[k + i]
            y += s * dy[k + i]
        k ^= 2
        d += 1
    return x, y


def to_num(x, y):
    k = max(abs(x), abs(y))
    s = k * 2 + 1
    if y == -k:
        return s * s - (s - 1) * 0 - (k - x)
    elif x == -k:
        return s * s - (s - 1) * 1 - (k + y)
    elif y == k:
        return s * s - (s - 1) * 2 - (k + x)
    else:
        return s * s - (s - 1) * 3 - (k - y)


# return (command, xor)
# xor: except frm num
def get_move(frm, to):
    x, y = frm
    tx, ty = to
    command = []
    xor = 0
    # RUDL
    while x < tx:
        x += 1
        command.append('R')
        xor ^= to_num(x, y)
    while y < ty:
        y += 1
        command.append('U')
        xor ^= to_num(x, y)
    while y > ty:
        y -= 1
        command.append('D')
        xor ^= to_num(x, y)
    while x > tx:
        x -= 1
        command.append('L')
        xor ^= to_num(x, y)
    return command, xor


def solve(s, t):
    _, xor = get_move(s, t)
    ans = []
    if xor != 0:
        ans += get_move(s, to_xy(xor))[0]
        ans += get_move(to_xy(xor), s)[0]
        ans += get_move(s, t)[0]
    else:
        _, xor = get_move(t, s)
        ans += get_move(s, t)[0]
        ans += get_move(t, to_xy(xor))[0]
        ans += get_move(to_xy(xor), t)[0]
    return ''.join(ans)


s, t = map(int, input().split())
ans = solve(to_xy(s), to_xy(t))
print(0, len(ans), ans, sep='\n')
0