Thứ Ba, 8 tháng 1, 2019

UVa 11799 - Horror Dash * (one linear scan to find the max value)

Link: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=117&page=show_problem&problem=2899
Sol:
#include <cstdio>
#include <algorithm>
using namespace std;
int main(){
int T,N,ans;
scanf("%d",&T);
for(int tc = 1;tc <= T;++tc){
scanf("%d",&N);
ans = 0;
for(int i = 0,x;i < N;++i){
scanf("%d",&x);
ans = max(ans,x);
}
printf("Case %d: %d\n",tc,ans);
}
return 0;
}

Không có nhận xét nào:

Đăng nhận xét

Bài G - Educatioal Round 62

Đề bài: Bạn được cho 1 đồ thị vô hướng đặc biệt. Nó bao gồm $2n$ đỉnh được đánh số từ 1 đến 2n. Dưới đây là một số đặc tính của đồ thị: + ...