我是靠谱客的博主 冷酷鸡,最近开发中收集的这篇文章主要介绍Kitty猫基因编码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

原题链接:https://www.luogu.org/problemnew/show/2562#sub

简单的递归题。记录一下前缀和然后二分求解就好。

参考代码:

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #define maxn 2000005
 5 using namespace std;
 6 int s[maxn];
 7 int num;
 8 void find(int l,int r){
 9     if (s[r] - s[l-1] == 0){
10         printf("A");
11         return;
12     }
13 
14     if (s[r] - s[l-1] == r - l + 1){
15         printf("B");
16         return ;
17     }
18     printf("C");
19     int mid = (l + r) >> 1;
20     find(l,mid);
21     find(mid+1,r);
22 }
23 int main(){
24     while (1){
25         char c = getchar();
26         if (c != '0' && c != '1')
27             break;
28         s[++num] = s[num-1] + c - '0';
29     }
30     find(1,num);
31     return 0;
32 }

 

转载于:https://www.cnblogs.com/OIerShawnZhou/p/7748437.html

最后

以上就是冷酷鸡为你收集整理的Kitty猫基因编码的全部内容,希望文章能够帮你解决Kitty猫基因编码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

评论列表共有 0 条评论

立即
投稿
返回
顶部