/*** | |
Md. Nazmul Hasan | |
Shahjalal University of Science & Technology,Sylhet. | |
hasan08sust@gmail.com | |
***/ | |
#include<iostream> | |
#include<cstdio> | |
#include<stack> | |
#include<queue> | |
#include<map> | |
#include<vector> | |
#include<algorithm> | |
#include<cstring> | |
#include<sstream> | |
#include<cmath> | |
#include <iomanip> | |
using namespace std ; | |
typedef long long ll ; | |
typedef int in ; | |
typedef unsigned long long ull ; | |
const double pi = 2*acos(0) ; | |
#define maxi 40000 | |
#define pf printf | |
#define sc scanf | |
#define pb push_back | |
#define MEM(x,y) (memset((x),(y),sizeof(x))) | |
#define MIN(x,y) ((x) < (y) ? (x) : (y)) | |
#define MAX(x,y) ((x) > (y) ? (x) : (y)) | |
#define load(array,size) for(int i=0 ; i<size ; i++) cin>>array[i] ; | |
#define new_line pf("\n") | |
#define clear_data(array) memset(array,0,sizeof(array)) | |
#define highest_int 2147483647 | |
int main() | |
{ | |
int test,n,p; | |
vector<int> data; | |
map<int,int>my_map; | |
sc("%d",&test); | |
while(test--) | |
{ | |
sc("%d",&n); | |
int mx = -200000; | |
int mx_diff = -200000; | |
for(int k=0 ; k<n ; k++) | |
{ | |
sc("%d",&p); | |
data.pb(p); | |
} | |
for(int i=0 ; i<data.size()-1 ; i++) | |
{ | |
if(data[i]>mx) | |
mx = data[i]; | |
if(mx - data[i+1] > mx_diff) | |
mx_diff = mx - data[i+1]; | |
} | |
pf("%d\n",mx_diff); | |
data.clear(); | |
} | |
return 0; | |
} |
15 November 2017
UVA 11078 - Open Credit System
Subscribe to:
Post Comments (Atom)
-
/*** Md. Nazmul Hasan Shahjalal University of Science & Technology,Sylhet. hasan08sust@gmail.com ***/ #include<iostream> #i...
-
n = 1 while n: str = input () # print('Case no# %d :'%n) if str == ' * ' : break if str == ' Hajj ...
-
/*** Md. Namzul Hasan Shahjalal University of Science & technology,sylhet. hasan08sust@gmail.com ***/ #include<bits/stdc++.h...
No comments:
Post a Comment