码迷,mamicode.com
首页 > 其他好文 > 详细

题解 CF169A 【Chores】

时间:2021-05-03 12:54:09      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:pre   for   cout   lang   target   最简   http   print   problem   

题目
显然,彼佳所做的 \(a\) 件家务中最简单的家务的复杂度,和瓦西亚所做的 \(b\) 件家务中最难的家务的复杂度之差,就是 \(x\)

C++

#include<bits/stdc++.h>
using namespace std;
int n;
int f[2005];
int a,b;
int main()
{
    cin>>n>>a>>b;
    for(int i=1;i<=n;i++)
    {
        cin>>f[i];
    }
    sort(f+1,f+1+n);
    cout<<f[b+1]-f[b]<<endl;
    return 0;
}

Python

s = input().split()
n = int(s[0])
a = int(s[1])
b = int(s[2])
s = input().split()
for i in range(len(s)):
    s[i] = int(s[i])
s.sort()
print(s[b]-s[b-1])

题解 CF169A 【Chores】

标签:pre   for   cout   lang   target   最简   http   print   problem   

原文地址:https://www.cnblogs.com/uyisnil/p/14724311.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!