由于到达下一点只可能产生{1,0,-1}的变化; 假设一直递降, 即操作为d, d-1, d-2, d-3, ..为等差数列. 设极限情况末尾速度为0, 即路程和为(n-1)*n/2 <= 30000 -> 求得n<300; 取n=300, 暴力枚举下复杂度为30000300(长度每点情况) = 9*10^6, 不会超时. // // Created by HASEE on 2024/5/9. // /*** remain true to the original aspiration ***/ #include <bits/stdc++.h> using n...