Constant Palindrome Sum

简介: Constant Palindrome Sum

Constant Palindrome Sum


传送门

需要知识:差分数组

题意:对于数列,使a[i]+a[n-i+1]=x,用[1,k]之间任意一个数替换a[i]或者是a[n-i+1],求出替换最小的次数。

这道题用的是差分数组,用差分数组维护x=[2,2k]的次数。这道题我是没有想出来,看了题解才知道,而且差分我也很少运用,算是盲区了

对于每对a[i]+a[n-i+1],设置sum=a[i]+a[n-i+1],minn=min(a[i],a[n-i+1]),maxx=max(a[i],a[n-i+1]).

当x=[2,minn]时,两个数必须都修改,因为a[i]最小为1嘛.

当x=[minn+1,sum-1],[sum+1,maxx+k],修改一个数

当x[maxx+k+1,2k]修改两个数

最后的出来的是次数,而不是那个数字,所以用差分还是很好做的

import java.util.*;
public class pd{
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    int t = sc.nextInt();
    while(t-->0){
      int n = sc.nextInt();
      int k = sc.nextInt();
      int[] a = new int[n];
      int[] cnt = new int[2*k+1];
      int[] pref = new int[2*k+2];
      for(int i=0;i<n;i++){
        a[i]=sc.nextInt();
      }
      for(int i=0;i<n/2;i++){
        cnt[a[i]+a[n-i-1]]++;
      }
      for(int i=0;i<n/2;i++){
        //int l1=a[i]+1;
        //int r1 = a[n-i+1]+1;
        //int l2 = a[i]+k;
        //int r2 = a[n-i+1]+k;
        int l = Math.min(a[i],a[n-i-1])+1;
        int r = Math.max(a[i],a[n-i-1])+k;
        pref[l]++;
        pref[r+1]--;
      }
      for(int i=1;i<=2*k+1;i++){
        pref[i]+=pref[i-1];
      }
      int ans = Integer.MAX_VALUE;
      for(int sum=2;sum<=2*k;sum++){
        ans = Math.min(ans,pref[sum]-cnt[sum]+(n/2-pref[sum])*2);
      }
      System.out.println(ans);
    }
  }
}
相关文章
|
Linux Python
ValueError: empty range for randrange() (0, 0, 0)
ValueError: empty range for randrange() (0, 0, 0)
Maximum Subsequence Sum
最大连续子列和问题,在此给出题解 (浙大PTA https://pintia.cn/problem-sets/16/problems/665)
成功解决ValueError: min_samples_split must be an integer greater than 1 or a float in (0.0, 1.0]; got th
成功解决ValueError: min_samples_split must be an integer greater than 1 or a float in (0.0, 1.0]; got th
|
人工智能 机器学习/深度学习
1007. Maximum Subsequence Sum (25)
简析:求最大子列和,并输出其首末元素。在线处理,关键在于求首末元素。 本题囧,16年9月做出来过,现在15分钟只能拿到22分,有一个测试点过不了。
977 0
|
Java
[LeetCode]Palindrome Number解析
链接:https://leetcode.com/problems/palindrome-number/#/description难度:Easy题目:9.Palindrome Number Determine whether an integer is a palindrome.
837 0
|
人工智能 算法
1305 Pairwise Sum and Divide
1305 Pairwise Sum and Divide 题目来源: HackerRank 基准时间限制:1 秒 空间限制:131072 KB 分值: 5 难度:1级算法题 有这样一段程序,fun会对整数数组A进行求值,其中Floor表示向下取整:   fun(A)     sum = 0     for i = 1 to A.
841 0
[LeetCode]--9. Palindrome Number
Determine whether an integer is a palindrome. Do this without extra space. Some hints: Could negative integers be palindromes? (ie, -1) If you are thinking of converting the integer to s
1010 0