码迷,mamicode.com
首页 > 其他好文 > 详细

SGU 186.The Chain

时间:2014-09-01 22:20:38      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:blog   os   io   for   div   log   sp   c   ios   

看懂题就是水题。。。

 

code

#include <iostream>
#include <algorithm>
using namespace std;
int a[110], n, l, r, ans;
int main()
{
	cin >> n;
	for (int i = 0; i < n; i++)
		cin >> a[i];
	r = n - 1;
	sort (a, a + n);
	while (l < r) {
		a[l]--, r--;
		if (!a[l]) l++;
		ans++;
	}
	cout << ans;
	return 0;
}

  

SGU 186.The Chain

标签:blog   os   io   for   div   log   sp   c   ios   

原文地址:http://www.cnblogs.com/keam37/p/3950015.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!