codeforces 1238E. Keyboard Purchase

https://codeforces.com/contest/1238/problem/E

E. Keyboard Purchase

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

You have a password which you often type — a string ss of length nn. Every character of this string is one of the first mm lowercase Latin letters.

Since you spend a lot of time typing it, you want to buy a new keyboard.

A keyboard is a permutation of the first mm Latin letters. For example, if m=3m=3, then there are six possible keyboards: abc, acb, bac, bca, cab and cba.

Since you type your password with one finger, you need to spend time moving your finger from one password character to the next. The time to move from character sisi to character si+1si+1 is equal to the distance between these characters on keyboard. The total time you have to spend typing the password with a keyboard is called the slowness of this keyboard.

More formaly, the slowness of keyboard is equal to ∑i=2n|possi−1−possi|∑i=2n|possi−1−possi|, where posxposx is position of letter xx in keyboard.

For example, if ss is aacabc and the keyboard is bac, then the total time of typing this password is |posa−posa|+|posa−posc|+|posc−posa|+|posa−posb|+|posb−posc||posa−posa|+|posa−posc|+|posc−posa|+|posa−posb|+|posb−posc| = |2−2|+|2−3|+|3−2|+|2−1|+|1−3||2−2|+|2−3|+|3−2|+|2−1|+|1−3| = 0+1+1+1+2=50+1+1+1+2=5.

Before buying a new keyboard you want to know the minimum possible slowness that the keyboard can have.

Input

The first line contains two integers nn and mm (1≤n≤105,1≤m≤201≤n≤105,1≤m≤20).

The second line contains the string ss consisting of nn characters. Each character is one of the first mm Latin letters (lowercase).

Output

Print one integer – the minimum slowness a keyboard can have.

Examples

input

Copy

6 3
aacabc

output

Copy

5

input

Copy

6 4
aaaaaa

output

Copy

0

input

Copy

15 4
abacabadabacaba

output

Copy

16

Note

The first test case is considered in the statement.

In the second test case the slowness of any keyboard is 00.

In the third test case one of the most suitable keyboards is bacd.

 

思路:开始想到状压DP,但是不论前面的字母先怎么取,前面的顺序会影响到后面的值。参考了网上大量答案,其实dp应该记录的是:当前取的字母之间的贡献值+当前已取字母在下一位将要取的位置时 与还没有取的字母 的贡献值   最小值。这样消除了后效性!!(因为还没有取得字母在右边某个位置,可以先计算出左边以蛆字母与右边未取字母在当前位的贡献值)

可以记录所取字母到下一位将要取的值的位置  的贡献值。减少重复计算,时间复杂度O(m*2^m).

O(m^2 * 2^m).

import java.util.*;
import java.io.*;
 
public class Main {
	public static void main(String args[]) {new Main().run();}
 
	FastReader in = new FastReader();
	PrintWriter out = new PrintWriter(System.out);
	void run(){
		out.println(work());
		out.flush();
	}
	long mod=1000000007;
	long gcd(long a,long b) {
		return b==0?a:gcd(b,a%b);
	}
	long work() {
		int n=in.nextInt();
		int m=in.nextInt();
		String str=in.next();
		long[] dp=new long[1<<m];
		long[][] cnt=new long[m][m];
		for(int i=1;i<n;i++) {
			int n1=str.charAt(i-1)-'a';
			int n2=str.charAt(i)-'a';
			cnt[n1][n2]++;
			cnt[n2][n1]++;
		}
		for(int i=1;i<1<<m;i++) {
			dp[i]=9999999999L;
			long v=0;
			for(int j=0;j<m;j++) {
				if((i&(1<<j))>0) {//第j个字母
					for(int k=0;k<m;k++) {
						if((i&(1<<k))==0) {
							v+=cnt[j][k];
						}
					}
				}
			}
			for(int j=0;j<m;j++) {
				if((i&(1<<j))>0) {
					dp[i]=Math.min(dp[i], dp[i-(1<<j)]+v);
				}
			}
		}
		
		return dp[(1<<m)-1];
	}
}
 
 
 
class FastReader
{
	BufferedReader br;
	StringTokenizer st;
 
	public FastReader()
	{
		br=new BufferedReader(new InputStreamReader(System.in));
	}
 
	public String next() 
	{
		if(st==null || !st.hasMoreElements())
		{
			try {
				st = new StringTokenizer(br.readLine());
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
		return st.nextToken();
	}
 
	public int nextInt() 
	{
		return Integer.parseInt(next());
	}
 
	public long nextLong()
	{
		return Long.parseLong(next());
	}
}

 

O(m * 2^m).

import java.util.*;
import java.io.*;
 
public class Main {
	public static void main(String args[]) {new Main().run();}
 
	FastReader in = new FastReader();
	PrintWriter out = new PrintWriter(System.out);
	void run(){
		out.println(work());
		out.flush();
	}
	long mod=1000000007;
	long gcd(long a,long b) {
		return b==0?a:gcd(b,a%b);
	}
	long work() {
		int n=in.nextInt();
		int m=in.nextInt();
		String str=in.next();
		long[] dp=new long[1<<m];
		long[][] cnt=new long[m][m];
		long[] rec=new long[1<<m];//记录每次移动的一位怎加的值,减少重复计算
		for(int i=1;i<n;i++) {
			int n1=str.charAt(i-1)-'a';
			int n2=str.charAt(i)-'a';
			cnt[n1][n2]++;
			cnt[n2][n1]++;
		}
		for(int i=1;i<1<<m;i++) {
			dp[i]=9999999999L;
			long v=0;
			int b=0;//最低位的1
			for(int j=0;j<m;j++) {
				if((i&(1<<j))>0) {
					b=j;
					break;
				}
			}
			for(int j=0;j<m;j++) {
				if((i&(1<<j))==0) {
					v+=cnt[b][j];
				}else {
					if(b!=j)v-=cnt[b][j];
				}
			}
			v+=rec[i-(1<<b)];
			for(int j=0;j<m;j++) {
				if((i&(1<<j))>0) {
					dp[i]=Math.min(dp[i], dp[i-(1<<j)]+v);
				}
			}
			rec[i]=v;
		}
		
		return dp[(1<<m)-1];
	}
}
 
 
 
class FastReader
{
	BufferedReader br;
	StringTokenizer st;
 
	public FastReader()
	{
		br=new BufferedReader(new InputStreamReader(System.in));
	}
 
	public String next() 
	{
		if(st==null || !st.hasMoreElements())
		{
			try {
				st = new StringTokenizer(br.readLine());
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
		return st.nextToken();
	}
 
	public int nextInt() 
	{
		return Integer.parseInt(next());
	}
 
	public long nextLong()
	{
		return Long.parseLong(next());
	}
}

参考https://www.cnblogs.com/myx12345/p/11642329.html

### Codeforces Div.2 比赛难度介绍 Codeforces Div.2 比赛主要面向的是具有基础编程技能到中级水平的选手。这类比赛通常吸引了大量来自全球不同背景的参赛者,包括大学生、高中生以及一些专业人士。 #### 参加资格 为了参加 Div.2 比赛,选手的评级应不超过 2099 分[^1]。这意味着该级别的竞赛适合那些已经掌握了一定算法知识并能熟练运用至少一种编程语言的人群参与挑战。 #### 题目设置 每场 Div.2 比赛一般会提供五至七道题目,在某些特殊情况下可能会更多或更少。这些题目按照预计解决难度递增排列: - **简单题(A, B 类型)**: 主要测试基本的数据结构操作和常见算法的应用能力;例如数组处理、字符串匹配等。 - **中等偏难题(C, D 类型)**: 开始涉及较为复杂的逻辑推理能力和特定领域内的高级技巧;比如图论中的最短路径计算或是动态规划入门应用实例。 - **高难度题(E及以上类型)**: 对于这些问题,则更加侧重考察深入理解复杂概念的能力,并能够灵活组合多种方法来解决问题;这往往需要较强的创造力与丰富的实践经验支持。 对于新手来说,建议先专注于理解和练习前几类较容易的问题,随着经验积累和技术提升再逐步尝试更高层次的任务。 ```cpp // 示例代码展示如何判断一个数是否为偶数 #include <iostream> using namespace std; bool is_even(int num){ return num % 2 == 0; } int main(){ int number = 4; // 测试数据 if(is_even(number)){ cout << "The given number is even."; }else{ cout << "The given number is odd."; } } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值