解题思路:
注意事项:
参考代码:
#include<iostream> #include<algorithm> using namespace std; const int maxn = 100000+10; typedef struct node{ int c; int L,R; }Node; Node A[110]; int main(void) { int n,m,x; cin>>n>>m; for(int i=1;i<=m;i++) { int L,R,c; cin>>L>>R>>c; A[i].c=c; A[i].L=L; A[i].R=R; } cin>>x; int max=-1; for(int i=1;i<=m;i++) { if((A[i].R-x)*(A[i].L-x)<=0) { max=i; } } if(max==-1) cout<<0; else cout<<A[max].c; return 0; }
0.0分
9 人评分
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:774 |
C二级辅导-同因查找 (C语言代码)浏览:592 |
简单的a+b (C语言代码)浏览:719 |
C语言训练-角谷猜想 (C语言代码)浏览:1767 |
简单的a+b (C语言代码)浏览:564 |
简单的a+b (C语言代码)浏览:752 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:564 |
Cylinder (C语言描述,蓝桥杯)浏览:1279 |
1157题解浏览:769 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:569 |