摘要:
简单题,求一定范围内的最大数于最小数之差,用两个数组保存max和min就行了。 1 #include <stdio.h> 2 #include <string.h> 3 #define N 50005 4 #define INF 0x7fffffff 5 int max[4*N],min[4*N]; 6 int D; 7 int Max(int a,int b) 8 { 9 return a>b ?a :b;10 }11 int Min(int a,int b)12 {13 return a<b ?a :b;14 }15 int query(int a,in 阅读全文