当前位置:   article > 正文

2024/3/25 蓝桥杯

2024/3/25 蓝桥杯

P8739 [蓝桥杯 2020 国 C] 重复字符串

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int k = sc.nextInt();
		sc.nextLine();
		char[] c = sc.nextLine().toCharArray();
		int cl = c.length;
		if(cl%k!=0) {
			System.out.println("-1");
			return ;
		}
		int zl = cl/k;//子串长度
		int ans = 0;
		for(int i=0;i<zl;i++) {
			Map<Character,Integer> map = new HashMap<>();
			int MAX = Integer.MIN_VALUE;
			for(int j=i;j<cl;j+=zl) {
				map.put(c[j],map.getOrDefault(c[j],0)+1);
				MAX = Math.max(MAX,map.get(c[j]));
			}
			ans+=k-MAX;
		}
		System.out.println(ans);
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29

P8627 [蓝桥杯 2015 省 A] 饮料换购

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int sum = n;
		while(n>2) {
			int t = n/3;
			sum+=t;
			n = t+n%3;
		}
		System.out.println(sum);
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/345735
推荐阅读
相关标签
  

闽ICP备14008679号