ICode9

精准搜索请尝试: 精确搜索
  • Operations Research Syllabus2020-01-20 13:42:59

    Zhejiang University (PhD) Henan University (Master) 运筹学与控制论(070105)Operations Research and Control 河南大学的运筹学与控制论专业于2003年获得硕士学位授予权,经过多年的积累和发展,目前形成了相对稳定的研究领域,具有一定的特色和优势。建立了中青年并重的科研梯

  • python程序设计2019-12-16 15:52:02

      泉州信息工程学院 软件学院 课程设计报告书   课 程 名:python程序设计          课程设计项目名称:  大学学术排名分析                       班         级:     16级软件工程一班                     

  • Python格式化输出——format用法示例2019-12-08 14:51:56

    format OR % 提到Python中的格式化输出方法,一般来说有以下两种方式: print('hello %s' % 'world') # hello world print('hello {}'.format('world')) # hello world 到底哪种好呢,反正对我来说,用了.format()之后就再也不想用%了。 format()不用理会数据类型,%s,%f等等我记不完; forma

  • 2018 Multi-University Training Contest 12019-09-19 19:00:33

    A打表找规律 //输入一个n,找到3个数x,y,z使得x+y+z=n,可以整除n,以及xyz最大,且输出xyz #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #define INF 0x3f3f3f3f using namespace std; const int maxn=1e6+5; int maxx=-1; void solve(int n){

  • 2019 Multi-University Training Contest 9 Rikka with Coin (背包+思维)2019-09-10 17:01:51

    Rikka with Coin Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 524288/524288 K (Java/Others) Total Submission(s): 1722    Accepted Submission(s): 568   Problem Description Rikka hates coins, and she used to never carry any coins with her

  • 2019 Multi-University Training Contest 8 Quailty and CCPC2019-08-14 21:07:07

    Quailty and CCPC Problem Description Considering the overall difficulty of other problems, we invite Quailty to propose an easy problem for this contest. Quailty accidentally won both gold medal and silver medal in 2017 CCPC final. The reason is explai

  • History of Best Paper Awards in AI, NLP, CV, PR, and ML2019-08-09 12:41:51

    原文链接:http://www.cnblogs.com/youth0826/archive/2012/09/08/2677130.html History of Best Paper Awards in AI, NLP, CV, PR, and ML Conference List: AAAI, IJCAI, ACL, CVPR, ICCV, and ICML   AAAI (Artificial Intelligence) 2012 Docu

  • PhD Positions opening at University of Nevada, Reno (Wireless Networking / Cognitive Radio / Wireles2019-08-09 12:35:58

    原文链接:http://www.cnblogs.com/youth0826/p/3340281.html PhD Positions opening at University of Nevada, Reno (Wireless Networking / Cognitive Radio / Wireless Security) PhD Positions opening at University of Nevada, RenoDept. of

  • 2019 Multi-University Training Contest 6 Nonsense Time (纯暴力)2019-08-07 21:03:49

    题意:给你一个n的排列,起初这些数都不能用, 然后还有一个数组 第 i 个数表示下标为 i 的数能够使用。 问每一个 i 对应的最长上升子序列。   题解: 可以通过倒推,从后往前考虑转化一下 ,然后就是删除一个数,两个数到n个数的最长上升子序列。 比赛的时候不会算复杂度算出来的是n^2log(n)

  • HDU 6630 [2019 Multi-University Training Contest 5]2019-08-06 10:07:05

    permutation 2 Problem Description You are given three positive integers N,x,y. Please calculate how many permutations of 1∼N satisfies the following conditions (We denote the i-th number of a permutation by pi): p1=x pN=y for all 1≤i<N, |pi−pi+

  • 2019 Multi-University Training Contest 3 - D Distribution of books2019-07-30 19:53:20

    二分答案 + 平衡树 + dp 很显然的一道二分答案题,我们每次二分每组最大和,用dp来检测。 dp[i]表示前i本书能够分成的最多组数。 可以得到状态转移方程 dp[i] = max(dp[j]) + 1 (sum[i] - sum[j] <= mid) sum为前缀和。 显然这样是n^2的,考虑优化。 可以建一颗平衡树,每个节点存前缀和,dp

  • 2019.7.29 区块链论文翻译2019-07-29 22:54:31

    Decentralized & Collaborative AI on BlockchainMicroSoft本位设计了一个基于区块链的分布式机器学习平台,用户可上传数据,更新模型,使用模型。Towards Blockchain-based Multi-Agent Robotic Systems: Analysis, Classification and ApplicationsInnopolis University, Innopolis, R

  • 2019 Multi-University Training Contest 1 - Operation2019-07-23 18:57:00

    魔改线性基 强制在线的做法,需要维护一个前缀的线性基,每次新加入数的时候,要把靠右边的数提到线性基的高位 这样维护的线性基,在查询区间异或和的时候,只需要把r为前缀的线性基出现为止大于l且异或之后和更大的数异或起来就行了,新套路!! #include <bits/stdc++.h> #define INF 0x3f3f3f3f

  • 2019 Multi-University Training Contest 1 E. Path2019-07-22 21:01:13

    PathTime Limit: 2000/1000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)Total Submission(s): 598    Accepted Submission(s): 147 Problem Description Years later, Jerry fell in love with a girl, and he often walks for a long tim

  • POJ 2010 Moo University - Financial Aid2019-07-20 23:35:28

    原文链接:http://www.cnblogs.com/xiao_wu/archive/2010/09/08/1821857.html     先将序列以score排序,于是有一个以financial aid的值的序列。     于是可以枚举每一个点为中位数点,那么要满足题目条件则有:     选择第i个点位中位数点,那么设i点之

  • 2018 Multi-University Training Contest 8 - From ICPC to ACM2019-07-10 15:50:22

    贪心 + 模拟 预处理出最便宜的原材料价格,然后用map储存每种价格的电脑数量。 这里因为每个月价格都在变化,所以可以用相对价格,也就是减去一个sigema(e[i])。 每次选择最小的卖,统计贡献,最后如果超出库存,反着删除即可(相当于没有生产这些电脑) #include <bits/stdc++.h> #define INF 0x3

  • 2018 Nowcoder Multi-University Training Contest 22019-06-30 09:01:57

    Practice Link A. run 题意: 白云每次可以移动\(1\)米或者\(k\)米,询问移动的米数在\([L, R]\)范围内的方案数有多少。 思路: \(dp[i][2]\)表示到第\(i\)米,是通过\(1\)米的方式过来的还是\(k\)米的方式过来的,递推即可。 代码: #include <bits/stdc++.h> using namespace std; #define

  • 2018 Nowcoder Multi-University Training Contest 12019-06-30 08:55:06

    Practice Link J. Different Integers 题意: 给出\(n\)个数,每次询问\((l_i, r_i)\),表示\(a_1, \cdots, a_i, a_j, \cdots, a_n\)中有多少个不同的数。 思路: 先分别离线求出\(a_1, \cdots a_i\)以及\(a_j, \cdots, a_n\)中有多少个不同的数。 再考虑有多少个数既在\([1, i]\)中也在\(

  • 2018 Nowcoder Multi-University Training Contest 52019-06-30 08:51:22

    Practice Link A. gpa 题意: 有\(n\)门课程,每门课程的学分为\(s_i\),绩点为\(c_i\),要求最多删除\(k\)门课程,使得gpa最高。 gpa计算方式如下: \[ \begin{eqnarray*} gpa = \frac{\sum s_ic_i}{\sum s_i} \end{eqnarray*} \] 思路: 首先删去的课程越多,gpa肯定不会变得更差。 所以我们肯定

  • 大学的组织架构2019-06-29 10:52:29

    Problem C: 大学的组织架构Time Limit: 1 Sec Memory Limit: 128 MB Submit: 1695 Solved: 1358 [Submit][Status]Description一个大学是由若干个学院、系组成的,每个学院、系有自己的名称和领导。定义Orgnization类,具有2个string属性,分别是一个组织的名称和其领导的名字;具

  • 韩国国立全北大学入学简介2019-06-29 10:26:55

    国立全北大学是韩国国立大学中历史最为悠久,最为著名的国立大学之一,其所在地为韩国全罗北道全州市,故而得名全北大学。 The Chonbuk National University Charter Chonbuk National University was founded in 1947, following the liberation of the nation, by the Provinci

  • hdu 三部曲 Contestants Division2019-06-26 12:49:53

    Problem Description In the new ACM-ICPC Regional Contest, a special monitoring and submitting system will be set up, and students will be able to compete at their own universities. However there’s one problem. Due to the high cost of the new judging syst

  • 2019.6.14 区块链论文翻译2019-06-14 11:41:59

    (In)Stability for the Blockchain: Deleveraging Spirals and Stablecoin Attacks Cornell University稳定币的市场行为,有很多经济学的概念。Validating IP Prefixes and AS-Paths with BlockchainsUniversity of Crete Heraklion, Greece & FORTH Heraklion, Greece用区块链解决B

  • 2018 Multi-University Training Contest 6 - Werewolf2019-05-29 12:40:24

    dfs + 并查集 因为题目不限制狼人的数量,所以无法确定村民有多少个。。因为每一局都有可能全是狼人。。 所以我们要计算的只有一定是狼的数量。 我们把每个玩家当成节点,在一个村民链中,如果该链与一条狼边形成一个环,那么可以推理出这条狼边指向的节点一定是狼。 因为村民不可能说谎,如

  • Survey lists 10 most innovative cities2019-05-28 19:52:50

    From China Daily Beijing and Shanghai are among the 10 most innovative cities in the world, based on published articles in leading academic journals, a survey released on Friday said. The reported by the Shanghai Institute for Science of Science and Sprin

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有