#35760: c++ ans


yp11151025@yphs.tp.edu.tw (803-23江紘宇)

學校 : 臺北市私立延平高級中學
編號 : 196814
來源 : [203.72.178.1]
最後登入時間 :
2024-01-15 16:38:36
f820. 極限運動 (Sports) -- TOI練習賽202104新手組第3題 | From: [203.72.178.1] | 發表日期 : 2023-06-15 17:25

#include<iostream>
using namespace std;
int main(){
    int n,h[31],land,L,R;
    while(cin>>n){
        for(int i=1;i<=n;++i) cin>>h[i];
        cin>>land;
        L=R=land;
        while(L>1 && h[L-1]<=h[L]) L--;
        while(R<n && h[R]>=h[R+1]) R++;
    cout<<(h[L]<h[R] ? L : R)<<'\n';
    }
return 0;
}

 
ZeroJudge Forum