九度
文章平均质量分 73
micx0124
hello world
展开
-
首尾相连数组的最大子数组和
#include #include using namespace std; int solve(vector vec){ int n=vec.size(); int sumtotal=0,i; for(i=0;i<n;++i){ sumtotal+=vec[i]; } // maxsum of subarray[1...N] i原创 2013-07-22 10:32:21 · 421 阅读 · 0 评论 -
寻找表达式
解法一 #include #include #include #include #include using namespace std; void print(vector str){ for(int i=0;i<str.size();++i){ cout<<str[i]; }cout<<endl; } void solve(int start,int原创 2013-07-22 16:22:42 · 385 阅读 · 0 评论 -
朋友圈
题目描述: 假如已知有n个人和m对好友关系(存于数字r)。如果两个人是直接或间接的好友(好友的好友的好友...),则认为他们属于同一个朋友圈,请写程序求出这n个人里一共有多少个朋友圈。 假如:n = 5 , m = 3 , r = {{1 , 2} , {2 , 3} , {4 , 5}},表示有5个人,1和2是好友,2和3是好友,4和5是好友,则1、2、3属于一个朋友圈,4、5属于另一个朋友原创 2013-07-23 16:50:12 · 521 阅读 · 0 评论