真假签到题(签到+打表)
Posted MangataTS
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了真假签到题(签到+打表)相关的知识,希望对你有一定的参考价值。
题目链接
https://ac.nowcoder.com/acm/contest/23479/E
题面
思路
没啥好说的,这个f求的就是x,通过打表或者分析都能看的出来
代码
#include<bits/stdc++.h>
using namespace std;
//----------------自定义部分----------------
#define ll long long
#define mod 1000000007
#define endl "\\n"
#define PII pair<int,int>
#define INF 0x3f3f3f3f
int dx[4] = -1, 0, 1, 0, dy[4] = 0, 1, 0, -1;
ll ksm(ll a,ll b)
ll ans = 1;
for(;b;b>>=1LL)
if(b & 1) ans = ans * a % mod;
a = a * a % mod;
return ans;
ll lowbit(ll x)return -x & x;
const int N = 2e6+10;
//----------------自定义部分----------------
ll x;
long long f(long long x)
if(x==1)return 1;
return f(x/2)+f(x/2+x%2);
int main()
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
std::cout.tie(nullptr);
cin>>x;
cout<<x<<endl;
return 0;
以上是关于真假签到题(签到+打表)的主要内容,如果未能解决你的问题,请参考以下文章