【笔试强训】Week3:重排字符串,分组,DNA序列

文章目录

1. 重排字符串

重排字符串

题目描述

解题思路

贪心+构造

每次处理相同的字符,优先处理出现次数最多的字符

  1. 先统计所有字母的出现次数,并记录最大次数,最大次数决定了这个字符串能否重排
  2. 让次数最多之外的字符间隔一个空排列,当把偶数格子排列完,剩余奇数格子天然就是不相邻的。
  3. 能否重排:maxcnt>(n+1)/2时,不可以重排.

代码实现

java 复制代码
import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        in.nextLine();
        String str = in.nextLine();
        char[] ss = str.toCharArray();
        int[] arr = new int[26];

        int max = 0;
        char maxchar = '0';

        for (int i = 0; i < n; i++) {
            arr[ss[i] - 'a']++;
            if (arr[ss[i] - 'a'] > max) {
                max = arr[ss[i] - 'a'];
                maxchar = ss[i];
            }
        }

        if (max > (n + 1) / 2) {
            System.out.println("no");
            return;
        } else {
            System.out.println("yes");
            char[] ans = new char[n];
            //先处理次数最多的字符
            int i = 0;
            while(max-- >0){
                ans[i]=maxchar;
                i+=2;
            }
            for (int j = 0; j < 26; j++) {
                if(arr[j]>0 && (char)(j+'a')!=maxchar){
                   while(arr[j]-- >0){
                        if(i>=n)
                            i=1;
                        ans[i] = (char)(j+'a');
                        i+=2;
                   }
                }
            }
            for(int j = 0;j<n;j++)
                System.out.print(ans[j]);
        }
    }
}

2. 分组

分组

题目描述

解题思路

暴力枚举 -> 二分查找

  1. 利用哈希表统计每一声部的人数
  2. 枚举最终的分配结果中,小组中最多的人数。
    • x表示小组最多的人数。计算对于每个声部按x分组会有多少组,统计m1+m2+...总和是否小于等于m。
    • 找到哈希表中最大的value,枚举的范围就是[1,hmax],从1开始枚举,直到找到一个数可以满足check条件。

优化:二分查找

可以把对[1,hmax]的枚举优化为二分查找:[1,ret-1] check(x)>m [ret,right] check(x)<=m

  • 如果check(mid)为假,则证明当前的x太小,应该把left更新为mid+1
  • 如果check(mid)为真,证明当前的x符合条件,但不一定是最小的,right更新为mid

代码实现

  • 暴力枚举
java 复制代码
import java.util.*;

public class Main{
    
    static HashMap<Integer,Integer> hash = new HashMap<>();
    static int m,n;
    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        n = in.nextInt();
        m = in.nextInt();
        int[] a = new int[n];
        
        int hmax = 0;
        for(int i = 0;i<n;i++){
            a[i] = in.nextInt();
            if(!hash.containsKey(a[i]))
                hash.put(a[i],0);
            hash.put(a[i],hash.get(a[i])+1);
            hmax = Math.max(hmax,hash.get(a[i]));
        }
   
        for(int i = 1;i<=hmax;i++){
            if(check(i)){
                System.out.println(i);
                return;
            }
        }
        System.out.println(-1);

    }
    //判断最多人数为x时能否被分成x组
    static boolean check(int x){
        int g = 0;//统计能分成多少组
        for(int a:hash.values()){
            g += a/x + ((a%x==0)?0:1);
        }
        return g<=m;
    }
}
  • 二分查找
java 复制代码
import java.util.*;

public class Main{
    
    static HashMap<Integer,Integer> hash = new HashMap<>();
    static int m,n;
    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        n = in.nextInt();
        m = in.nextInt();
        int[] a = new int[n];
        
        int hmax = 0;
        for(int i = 0;i<n;i++){
            a[i] = in.nextInt();
            if(!hash.containsKey(a[i]))
                hash.put(a[i],0);
            hash.put(a[i],hash.get(a[i])+1);
            hmax = Math.max(hmax,hash.get(a[i]));
        }
        
        int left = 1;
        int right = hmax;
        while(left<right){
            int mid = (right-left)/2+left;
            if(check(mid))
                right = mid;
            else
                left = mid+1;
        }
        if(check(left))
            System.out.println(left);
        else
            System.out.println(-1);

    }
    //判断最多人数为x时能否被分成x组
    static boolean check(int x){
        int g = 0;//统计能分成多少组
        for(int a:hash.values()){
            g += a/x + ((a%x==0)?0:1);
        }
        return g<=m;
    }  
}

3. DNA序列

DNA序列

题目描述

解题思路

滑动窗口

字串长度固定为5,所以两个指针同时向右运动,可以用滑动窗口。

代码实现

java 复制代码
import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String str = in.nextLine();
        int len = in.nextInt();

        char[] ss = str.toCharArray();
        int n = ss.length;
        String  ans = " ";

        int l = 0;
        int r = 0;
        int count = 0;
        int max = 0;

        while(r<n){
            if(ss[r]=='C' || ss[r]=='G')
                count++;
            while(r-l+1>len){
                if(ss[l]=='C' || ss[l] == 'G')
                    count--;
                l++;
            }
            if(r-l+1==len && count>max){
                max = count;
                ans = str.substring(l,r+1);
            }
            r++;
        }
        System.out.println(ans);
    }
}
相关推荐
We་ct1 小时前
LeetCode 97. 交错字符串:动态规划详解
前端·算法·leetcode·typescript·动态规划
热心网友俣先生1 小时前
2026年第二十三届五一数学建模竞赛B题四问参考答案+多算法对比
算法·数学建模
无敌昊哥战神1 小时前
【LeetCode 37】解数独 (Sudoku Solver) —— 回溯法详解 (Python/C/C++)
c语言·c++·python·算法·leetcode
风筝在晴天搁浅1 小时前
LeetCode 162.寻找峰值
算法·leetcode
itzixiao2 小时前
L1-067 洛希极限(10分)[java][python]
java·开发语言·算法
jinyishu_2 小时前
链表经典OJ题
c语言·数据结构·算法·链表
葫三生2 小时前
三生原理文章被AtomGit‌开源社区收录的意义探析?
人工智能·深度学习·神经网络·算法·搜索引擎·开源·transformer
AI进化营-智能译站2 小时前
ROS2 C++开发系列15-模板实现通用算法|宏定义ROS2调试开关|一次编码适配多平台
java·c++·算法·ai
刀法如飞2 小时前
Java数组去重的20种实现方式——指导AI解决不同问题的思路
java·算法·面试