restructure zeta/** to storage/zeta/**
This commit is contained in:
11
storage/zeta/py/completed/15651.py
Normal file
11
storage/zeta/py/completed/15651.py
Normal file
@@ -0,0 +1,11 @@
|
||||
N, M = map(int, input().split())
|
||||
trace = [([i], M) for i in range(N, 0, -1)] # prev, depth
|
||||
|
||||
while trace:
|
||||
p, d = trace.pop()
|
||||
if d == 1:
|
||||
print(" ".join(map(str, p)))
|
||||
continue
|
||||
for i in range(N, 0, -1):
|
||||
trace.append((p + [i], d-1))
|
||||
# 킹트래킹
|
||||
Reference in New Issue
Block a user