Thứ Ba, 8 tháng 1, 2019

UVa 11727 - Cost Cutting * (sort the 3 numbers and get the median)

Link: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=117&page=show_problem&problem=2827
Sol: 
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main() {
int n,cnt,a[3];
cin >> n;
cnt = 0;
for(int i=0;i<n;i++){
cnt++;
cout << "Case " << cnt << ": ";
cin >> a[0] >> a[1] >> a[2];
vector<int> v(a,a+3);
sort(v.begin(),v.end());
cout << v[1] << endl;
}
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ị: + ...