标签:代码 输入 美团 ++ 比赛 algorithm module 成绩 pre
第一行一个整数 n (1≤n≤ 2^20),表示参加比赛的总人数。
接下来 n 个数字(数字范围:-1000000…1000000),表示每个参赛者的积分。
小美是第一个参赛者。
小美最多参赛的轮次。
4 4 1 2 3
2
ac代码:
#include<iostream> #include<cstdio> #include<cstring> #include<vector> #include<algorithm> #include<cmath> using namespace std; int main() { int n,xiaomei,temp,small=1; cin >> n; cin >> xiaomei; for (int i = 1;i < n;i++) { cin >> temp; if (temp <= xiaomei) small++; } cout <<(int)(log(small)/log(2))<< endl; //cout << "hello" << endl; return 0; }
标签:代码 输入 美团 ++ 比赛 algorithm module 成绩 pre
原文地址:http://www.cnblogs.com/weedboy/p/7029469.html