rise

HDOJ 1004 Let the Balloon Rise

匿名 (未验证) 提交于 2019-12-03 00:34:01
这个题很简单,就是把输入的字符串放入字符数组,进行比较,然后计数就好了。整个过程也就是字符串的比较和赋值要用strcmp和strcpy需要注意,不能直接==。 #include <iostream> #include <cstring> #define MAX 1000 using namespace std ; int main () { int N , ct [ MAX ]={ 0 }; char color [ MAX ][ 16 ]; char c [ 16 ], maxcolor [ 16 ]; while ( cin >> N && N != 0 ) { int max = 0 ; for ( int i = 0 ; i < N ; i ++) { cin >> c ; for ( int j = 0 ; j <= i ; j ++) { if ( strcmp ( c , color [ j ])== 0 ) { ct [ j ]++; } } strcpy ( color [ i ], c ); ct [ i ]= 1 ; } for ( int i = 0 ; i < N ; i ++) { if ( max < ct [ i ]) { max = ct [ i ]; strcpy ( maxcolor , color [ i ]); } } cout <<

Let the Balloon Rise

匿名 (未验证) 提交于 2019-12-02 20:41:15
原创    Java AC 1 import java.util.*; 2 3 public class HDOJ_1004 { 4 5 public static void main(String[] args) { 6 Scanner reader=new Scanner(System.in); 7 ArrayList list=new ArrayList(); 8 int count=-1; 9 while(reader.hasNext()) { 10 int N=reader.nextInt(); 11 if(N==0) { 12 break; 13 } 14 String str[]=new String[N]; 15 int value[]=new int[N]; 16 for(int i=0;i<N;i++) { 17 str[i]=reader.next(); 18 for(int j=0;j<i;j++) { 19 if(str[i].equals(str[j])==true) { //判断此字符串与前面字符串是否相等 20 value[j]++; 21 } 22 } 23 } 24 //寻找最大值 25 int index=0; 26 int max=-1; 27 for(int i=0;i<N;i++) { 28 if(value[i]>max) { 29

The Rise of Meta Learning

六月ゝ 毕业季﹏ 提交于 2019-12-01 18:14:39
The Rise of Meta Learning 2019-10-18 06:48:37 This blog is from: https://towardsdatascience.com/the-rise-of-meta-learning-9c61ffac8564 Connor Shorten Follow Oct 16 · 9 min read https://openai.com/blog/solving-rubiks-cube/ Meta-Learning describes the abstraction to designing higher level components associated with training Deep Neural Networks. The term “ Meta-Learning ” is thrown around in Deep Learning literature frequently referencing “ AutoML ”, “ Few-Shot Learning ”, or “ Neural Architecture Search ” when in reference to the automated design of neural network architectures. Emerging from

第一部分day03-元组、字典、字符串

流过昼夜 提交于 2019-11-29 13:59:44
-----元组-----元组查询 1 a = (1,2,3,4) 2 print(a[1:2]) #(2,) 购物车练习(列表方法练习) 1 product_list=[ 2 ['Mac',9000], 3 ['kindle',800], 4 ['tesla',900000], 5 ['python book',105], 6 ['bike',2000], 7 ] 8 pubs_list = [] 9 save = input("please input money:") 10 if save.isdigit(): 11 save = int(save) 12 while True: 13 14 print("shopping info".center(50,"-")) 15 #、打印商品内容 16 for i,v in enumerate(product_list,1): 17 print(i,v) 18 choice = input("please input nums:") 19 #验证输入是否合法 20 if choice.isdigit(): 21 choice = int(choice) 22 if choice > 0 and choice <= len(product_list): 23 #将用户选择商品用p_iters取出 24 p_iters = product

HAProxy调度算法

核能气质少年 提交于 2019-11-28 07:23:41
文章目录 HAProxy调度算法 一、静态算法 1. static-rr 2. first 二、动态算法: 1. roundrobin 2. leastconn 三、混合算法 1. source 2. uri 3. url_param: 4. hdr 5. rdp-cookie 6. random 4层与7层的区别 IP透传: 四层IP透传 七层IP透传: HAProxy调度算法 HAProxy通过固定参数balance指明对后端服务器的调度算法,该参数可以配置在listen或backend选项中。 HAProxy的调度算法分为静态和动态调度算法,但是有些算法可以根据参数在静态和动态算法中相互转换。 一、静态算法 静态算法:按照事先定义好的规则轮询公平调度,不关心后端服务器的当前负载、链接数和相应速度等,且无法实时修改权重,只能靠重启HAProxy生效。 1. static-rr 基于权重的轮询调度,不支持权重的运行时调整及后端服务器慢启动,其后端主机数量没有限制 listen web_host bind 192.168.7.101:80,:8801-8810,192.168.7.101:9001-9010 mode http log global balance static-rr server web1 192.168.7.103:80 weight 1 check inter

HDU 1004——Let the Balloon Rise

依然范特西╮ 提交于 2019-11-28 04:57:28
题解 #include<iostream> #include<map> using namespace std; int main(){ int n; while(~scanf("%d",&n) && n!=0){ map<string,int> mp; map<string,int>::iterator it; string ch; for(int i=0;i<n;i++){ //注意 map容器的用法 cin>>ch; mp[ch]++; } int cnt=0; string ans; for(it=mp.begin();it!=mp.end();it++) if(it->second >cnt){ cnt=it->second; ans=it->first; } cout<<ans<<endl; } return 0; } map容器的使用,以及巧妙地 在输入时就计算出各种颜色的数目 来源: https://www.cnblogs.com/xxwang1018/p/11392539.html

Let the Balloon Rise HDU - 1004 (字典树和map两种写法)

混江龙づ霸主 提交于 2019-11-27 22:39:51
Let the Balloon Rise HDU - 1004 题目链接: https://vjudge.net/problem/HDU-1004 题目: 题目描述 有多种颜色的气球,统计它们的个数,并找出数量最多的那种颜色。 Input 有多组样例输入。每组样例第一行输入一个整数N (0 < N <= 1000) -- 代表一共有N个气球。接下来N行每行输入一个不多于15个字母的字符串代表颜色。 N=0代表输入结束。 Output 每组样例数据输出数量最多的那种颜色的气球。(保证输出唯一) Sample Input 5 green red blue red red 3 pink orange pink 0 Sample Output red pink思路:比较简单的是map写法,记录字符串对应的个数,而且还是自动排序的: // // Created by hanyu on 2019/4/9. // #include <iostream> #include <memory.h> #include <string> #include <istream> #include <sstream> #include <vector> #include <stack> #include <algorithm> #include <map> #include <queue> #include

pdf添加水印

耗尽温柔 提交于 2019-11-27 12:21:42
1.使用NuGet下载iTextSharp Version=5.5.10.0 1 public class ConvertPDF 2 { 3 private static string fontPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"C:\WINDOWS\Fonts\SIMFANG.TTF"); 4 5 /// <summary> 6 /// 添加普通偏转角度文字水印保存到文件 7 /// </summary> 8 /// <param name="inputfilepath">文件地址</param> 9 /// <param name="outputfilepath"></param> 10 /// <param name="waterMarkName"></param> 11 public static void SetWatermarkToPath(string inputfilepath, string waterMarkName, string outputfilepath, string fontS = "25", string bigWaterMarkName = "") 12 { 13 //if (string.IsNullOrEmpty(waterMarkName)) 14 //{