SRM 591 div1 275
生活随笔
收集整理的這篇文章主要介紹了
SRM 591 div1 275
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
?topcoder被Appirio收購了
好久沒做tc,這個題目挺簡單。就是Arena里面看不到圖片,只能去tc網站上找題目。http://community.topcoder.com/stat?c=problem_statement&pm=12746
#include <vector> #include <list> #include <map> #include <set> #include <queue> #include <deque> #include <stack> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cstdlib> #include <ctime>using namespace std;int tmp[55]; class TheTree { public:int maximumDiameter(vector <int> cnt) {int D = cnt.size(), i, j;int ans = 0, sum;for(i = 0; i < D; ++i) {for(j = i; j < D; ++j) tmp[j] = cnt[j];sum = 0;for(j = i; j < D; ++j) {if(tmp[j] != 0) {tmp[j]--;sum++;} else break;}for(j = i; j < D; ++j) {if(tmp[j] != 0) {tmp[j]--;sum++;} else break;}printf("%d\n", sum);ans = max(ans, sum);}return ans;} };<%:testing-code%> //Powered by KawigiEdit 2.1.8 (beta) modified by pivanof! View Code?
轉載于:https://www.cnblogs.com/vongang/p/3331060.html
總結
以上是生活随笔為你收集整理的SRM 591 div1 275的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 最长子段和 11061008 谢子鸣
- 下一篇: 一些不知道的函数