蓝桥杯——第十二届国赛——异或变换

#H 异或变换
时间限制: 3.0s 内存限制: 512.0MB 本题总分:20 分

问题描述

  小蓝有一个 01 串 s = s1s2s3 ⋅ ⋅ ⋅ sn。
  以后每个时刻,小蓝要对这个 01 串进行一次变换。每次变换的规则相同。
  对于 01 串 s = s1s2s3 ⋅ ⋅ ⋅ sn,变换后的 01 串s' = s'1s'2s'3 ⋅ ⋅ ⋅ s'n为:
  s'1=s1;    
  s'i=si-1⊕si。
  其中 a ⊕ b 表示两个二进制的异或,当 a 和 b 相同时结果为 0 ,当 a 和 b
  不同时结果为 1。
  请问,经过 t 次变换后的 01 串是什么?

输入格式

  输入的第一行包含两个整数 n,t,分别表示 01 串的长度和变换的次数。
  第二行包含一个长度为 n 的 01 串。

输出格式

  输出一行包含一个 01 串,为变换后的串。

测试样例1
Input:
5 3
10110

Output:
11010

Explanation:
初始时为 10110,变换 1 次后变为 11101,变换 2 次后变为 10011,变换 3 次后变为 11010。

评测用例规模与约定

  对于 40% 的评测用例,1 ≤ n ≤ 100 , 1 ≤ t ≤ 1000。
  对于 80% 的评测用例,1 ≤ n ≤ 1000 , 1 ≤ t ≤ 10^9。
  对于所有评测用例,1 ≤ n ≤ 10000 , 1 ≤ t ≤ 10^18。


代码如下:

import java.util.Scanner;

public class Main {
	static int n;
	static int[] b;
public static void main(String[] args) {
	Scanner sc=new Scanner(System.in);
	n=sc.nextInt();
	int m=sc.nextInt();
	String l=sc.next();
	int[] a=new int[n];
	for (int i = 0; i < a.length; i++) {
		a[i]=l.charAt(i)-48;
	}
	f(m,a);
}
public static int[] f(int m,int[] a) {
	b=new int[n];
	if(m==0) {
		return b;
	}else {
		b[0]=a[0];
		for (int i = 1; i < b.length; i++) {
			if(a[i-1]==a[i]) {
				b[i]=0;
			}else {
				b[i]=1;
			}
		}if(m==1) {
			for (int i = 0; i < b.length; i++) {
				System.out.print(b[i]);
			}
		}
		f(m-1,b);
	}
	return b;
}
}

你可能感兴趣的:(蓝桥杯,蓝桥杯,java,算法,异或变换)