TLE时间超限进!

P1923 【深基9.例4】求第 k 小的数

mushroom2016 @ 2024-05-22 20:07:29

请把下面这串代码复制到main中第一行菇(其他加速代码也行)

std::ios::sync_with_stdio(false);

弱菇一只,请大佬多多指教(有更好的方法请回复告诉我)


by hanshengyuan2024 @ 2024-05-30 19:36:10

@mushroom2016 快读快写。


by zhuyucheng6046 @ 2024-06-01 18:04:44

虽然我没看懂但我写一种我认为好的程序:

#include<bits/stdc++.h>
using namespace std;
int a,b;
int main()
{
    scanf("%d%d",&a,&b);//不用“scanf”会超时,因为n>100万,cin会超时
    int n[a];
    for(int i=0;i<a;i++)
    scanf("%d",&n[i]);
    sort(n,n+a);
    printf("%d",n[b]);
    return 0;
}

by Royal_2012 @ 2024-06-02 12:00:15

谢了嗷~(一只摆脱TLE烦恼的蒟蒻~)


|