本文主要是介绍Gym 101503C Twisting the Number(思维+枚举),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目大意:
有一个整数 n ,其中
0111==>7
1110==>14
1101==>13
所以 w(11)=7,11,13,14
现在给你一个 n , 找到一个
解题思路:
首先我们对于给定的
设有 n 的二进制表示为
那么我们只需要枚举 101000111 , 100111111 这两个就可以了,因为别的数字都可以由比这两个小的得到,仔细看一下代码就懂了。
代码:
#include <iostream>
#include <string.h>
#include <string>
#include <algorithm>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <map>
using namespace std;
typedef long long LL;
const LL INF = 2e18;
const int MAXN = 1e6+5;
const double PI = acos(-1);
const double eps = 1e-8;
const LL MOD = 1e9+7;
LL get1(string s){if(s[0] == '0') return INF;LL ans = 0;int len = s.length();for(int i=0; i<len; i++) if(s[i] == '1') ans += (1LL<<(len-1-i));return ans;
}
string get2(LL n){string s = "";while(n){s += ((n&1)+'0');n>>=1;}for(int i=0; i<s.length()/2; i++) swap(s[i],s[s.length()-i-1]);return s;
}
LL cal(LL n){string s = get2(n);string s1 = "";s1 += s[0];LL ans = n;int len = s.length();for(int i=1; i<len; i++){string s2 = s.substr(i);s2 += s1;ans = min(ans, get1(s2));s1 += s[i];}return ans;
}
int main(){LL n;while(cin>>n){LL ans = cal(n);string s = get2(n);int len = s.length();for(int i=1; i<len-1; i++){if(s[i] == '1'){string s1 = s.substr(0,i)+'0';string s2 = get2((1LL<<(len-i-1))-1);s1 += s2;LL tmp = cal(get1(s1));ans = max(ans, tmp);}}printf("%lld\n",ans);}return 0;
}
这篇关于Gym 101503C Twisting the Number(思维+枚举)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!