博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HackerRank - "Manipulative Numbers"
阅读量:5462 次
发布时间:2019-06-16

本文共 824 字,大约阅读时间需要 2 分钟。

The answer by  is perfect:

Lesson learnt: always try to dig more insightful thoughts to find hidden\subtle mechanisms.

#include 
#include
#include
#include
#include
#include
using namespace std;int main() { // Get input int n; cin >> n; vector
in(n, 0); for(int i = 0; i < n; i ++) cin >> in[i]; // int maxbit = floor(log(*std::max_element(in.begin(), in.end()))/log(2)); int k = -1; for (int bitcnt = maxbit - 1; bitcnt >= 0; bitcnt --) { bool bValid = true; unordered_map
rec; for(auto v : in) { int vs = v >> bitcnt; rec[vs] ++; if(rec[vs] > (n/2)) { bValid = false; break; } } if(!bValid) { continue; } k = bitcnt; break; } cout << k << endl; return 0;}

 

转载于:https://www.cnblogs.com/tonix/p/4565032.html

你可能感兴趣的文章
如何让你的 Asp.Net Web Api 接口,拥抱支持跨域访问。
查看>>
ArcGIS Server 10.1 错误 service failed to start,
查看>>
MYSQL中case when then else end 用法
查看>>
C语言::模拟实现strlen函数
查看>>
利用NABCD模型进行竞争性需求分析
查看>>
Vue的ref,父节点,获取子节点数据的一个手段
查看>>
好文推荐系列--------(1)bower---管理你的客户端依赖
查看>>
一些常用的基本知识收录
查看>>
1044 火星数字
查看>>
数据劫持,订阅者模式,双向绑定
查看>>
关于使用别人方法的效率问题
查看>>
svn第一篇----入门指南
查看>>
按钮 是否可用 的控制
查看>>
隐马尔科夫模型(HMM) 举例讲解
查看>>
JedisUtils工具类模板
查看>>
NOIP2011题解
查看>>
[Python] 文科生零基础学编程系列二——数据类型、变量、常量的基础概念
查看>>
[唐胡璐]QTP技巧 - ALT+G快捷键
查看>>
P2746 [USACO5.3]校园网Network of Schools
查看>>
java中使用队列:java.util.Queue
查看>>