Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
109330 | 林泽豪 | 折半查找法 | C++ | 解答错误 | 80 | 2005 MS | 292 KB | 520 | 2023-11-08 13:30:34 |
#include<bits/stdc++.h> using namespace std; int an[10000]; double l; bool mn=0;int a; void sb(int x,int y) { if(x==y&&l!=x){ cout<<"-1"; exit(0); } if(l==an[(x+y)/2]||l==an[(x+y)/2+1]){ if(l==an[(x+y)/2]){ cout<<(x+y)/2; exit(0); }else{ cout<<(x+y)/2+1; exit(0); } }else{ if((x+y)/2>l){ sb((x+y)/2,1); }else{ sb((x+y)/2,a); } } } int main() { cin>>a; for(int i=1;i<=a;i++){ cin>>an[i]; } cin>>l; sb(1,a); return 0; }