首页 > 代码库 > HDU 1594 find the max
HDU 1594 find the max
数序问题。
题意是说 一个数列 a1,a2,……ai,……an; x=i , y = ai;找两个点斜率绝对值!!最大。
第一次没找绝对值,……认真读题。。。
x 每次加1 。 只需要找 相邻的 ai 是否是最大就好了。
#include<cstdio> #include<cstring> #include<string> #include<queue> #include<algorithm> #include<map> #include<stack> #include<iostream> #include<list> #include<set> #include<cmath> #define INF 0x7fffffff #define eps 1e-6 #define LL long long using namespace std; int main() { int n; while(scanf("%d",&n)!=EOF) { int a,b,m=0,tmp; scanf("%d",&a); for(int i=1;i<n;i++) { scanf("%d",&b); if(m<abs(a-b)) m=abs(a-b),tmp=i; a=b; } printf("%d %d\n",tmp,tmp+1); } }
HDU 1594 find the max
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。