Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
a0 から n-1 までの n 個の整数の配列が与えられます。答えは、次のような (0,...,n-1) の順列です。
a
a_0 + h_0 <= a_1 + h_1 <= ... <= a_n-1 + h_n-1 <= n-1
n <= 60そして答えはユニークです。
n <= 60
たとえば、a(0,2,4,2,0) が (0,2,4,2,0) の場合、答え ( h) は (問題が約束したように) 一意に決定されます。
h
h = (3,1,0,2,4)