package LeetCode_408 /** * 408. Valid Word Abbreviation * (Prime) * Given a non-empty string s and an abbreviation abbr, return whether the string mat ...
                            
                            
                                分类:
其他好文   时间:
2020-08-17 17:30:35   
                                阅读次数:
64
                             
                    
                        
                            
                            
                                
                    Yes, even though they probably certainly know that you probabaly wouldn't, they don't certainly know that although you probably wouldn't, there's no p ...
                            
                            
                                分类:
其他好文   时间:
2020-08-10 19:47:20   
                                阅读次数:
112
                             
                    
                        
                            
                            
                                
                    package LeetCode_582 import java.util.* import kotlin.collections.ArrayList import kotlin.collections.HashMap /** * 582.Kill Process * (Prime) *Given  ...
                            
                            
                                分类:
其他好文   时间:
2020-08-10 09:25:07   
                                阅读次数:
54
                             
                    
                        
                            
                            
                                题意: 分析: 代码: #include <bits/stdc++.h> using namespace std; typedef long long ll; const int mod=1e9+7; const int N=1e6+6; int mu[N]; int prime[N],cnt; b ...
                            
                            
                                分类:
其他好文   时间:
2020-08-07 12:39:20   
                                阅读次数:
82
                             
                    
                        
                            
                            
                                import java.io.; import java.util.; public class TestExec { public void runbat(int timeFortmat) { String cmd = "cmd /c start D:/ScheduleRun/data/"+tim ...
                            
                            
                                分类:
编程语言   时间:
2020-08-04 23:58:26   
                                阅读次数:
96
                             
                    
                        
                            
                            
                                    Ugly numbers are numbers whose only prime factors are 2, 3 or 5. The sequence 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, ... shows the first 11 ugly numbers. ...
                            
                            
                                分类:
其他好文   时间:
2020-07-30 01:31:19   
                                阅读次数:
73
                             
                    
                        
                            
                            
                                    Docker换镜像,Docker pull、Docker search 失败出现以下错误 Error response from daemon: Get https://index.docker.io/v1/search?q=php&n=25: net/http: TLS handshake tim ...
                            
                            
                                分类:
其他好文   时间:
2020-07-26 15:44:53   
                                阅读次数:
78
                             
                    
                        
                            
                            
                                    类型:有关素数的基础算法 思路:埃氏筛选 AC代码: #include<iostream> #include<cstring> #include<algorithm> using namespace std; const int MAX_N=10000000; int prime[MAX_N]; b ...
                            
                            
                                分类:
其他好文   时间:
2020-07-26 01:30:40   
                                阅读次数:
73
                             
                    
                        
                            
                            
                                    import this The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex i ...
                            
                            
                                分类:
编程语言   时间:
2020-07-24 21:08:55   
                                阅读次数:
66
                             
                    
                        
                            
                            
                                    题目链接:New Equipments 题意:有n个工人,m台机器,每个工人有三个属性$a_i,b_i,c_i$,现在要把工人安排到机器上工作,一个工人只能安排到一个机器,一个机器上也只能安排一个工人,把第$i$个工人安排到第$j$个机器上的代价为$a_i \times j^2 + b_i \tim ...
                            
                            
                                分类:
其他好文   时间:
2020-07-24 16:07:33   
                                阅读次数:
85