Equal Sum Subarrays
시간 제한: 3000ms메모리 제한: 1024MB출처: USACO 2023 February GoldBOJ 27843
문제
FJ gave Bessie an array of length () with all contiguous subarray sums distinct. For each index , help Bessie compute the minimum amount it suffices to change by so that there are two different contiguous subarrays of with equal sum.
입력
The first line contains .
The next line contains (the elements of , in order).
출력
One line for each index .
예제
예제 1
입력
2 2 -3
출력
2 3
예제 2
입력
3 3 -10 4
출력
1 6 1
코드를 제출하려면 로그인하세요.