题解 | #Median#

Median

https://www.nowcoder.com/practice/b5da3f56557f42978ca87afedbd85fbe

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int main() {
    vector<int> v;
    int n, x;
    while (cin >> n) { // 注意 while 处理多个 case
        while(n -- && cin >> x)
            v.push_back(x);
    }
    sort(v.begin(), v.end());
    int len = v.size();
    if(len & 1) cout << v[len >> 1];
    else cout <<v[len - 1 >> 1];
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

与火:这不接? 留子的钱不挣白不挣
点赞 评论 收藏
分享
jack_miller:杜:你不用我那你就用我的美赞臣
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
今天 10:46
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务