ICode9

精准搜索请尝试: 精确搜索
  • $CF19A\ World\ Football\ Cup$2019-04-13 12:52:18

    炒鸡\(6\)批的模拟题。 注意的是输入 把握好空格 大小写。 根据题目的这句话来排序 积分榜是按照以下原则制作的:胜利一个队得3分,平分1分,失败0分。 首先,球队按积分顺序排在积分榜上,分数相等比较净胜球,净胜球相等比较进球数。 排序的话 根据 分数 净胜球 进球数来排序 反正就是明白

  • HDU 1556 Color the ball2019-04-06 09:39:53

    http://acm.hdu.edu.cn/showproblem.php?pid=1556   Problem Description N个气球排成一排,从左到右依次编号为1,2,3....N.每次给定2个整数a b(a <= b),lele便为骑上他的“小飞鸽"牌电动车从气球a开始到气球b依次给每个气球涂一次颜色。但是N次以后lele已经忘记了第I个气球已经涂过

  • [Swift]LeetCode819. 最常见的单词 | Most Common Word2019-03-28 19:40:23

    Given a paragraph and a list of banned words, return the most frequent word that is not in the list of banned words.  It is guaranteed there is at least one word that isn't banned, and that the answer is unique. Words in the list of banned words are

  • zuma_list(使用string类 实现)2019-03-14 12:41:26

    #include <iostream>#include <string>using namespace std;//Solutionvoid del(int index, string ball, string &zuma, int len, bool flag);int main(){ string ball; int operations,index; int len; string zuma; getline(cin, zuma);

  • Ball CodeForces - 12D (线段树)2019-02-11 17:49:23

    题目链接:https://cn.vjudge.net/problem/CodeForces-12D 题目大意:给你一个人的三个信息,如果存在一个人比当前人的这三个信息都大,那么这个人就会退出,问你最终有多少人退出。 具体思路:首先按照x的大小排序,大的在前面,然后对y进行离散化,其次就该使用线段树了,将y表示成区间,每一次更新的

  • canvas高级动画示例2019-02-11 10:41:31

    canvas高级动画示例 演示地址 https://qzruncode.github.io/example/index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, ini

  • 3P - Snooker2019-02-08 22:48:36

    background: Philip likes to play the QQ game of Snooker when he wants a relax, though he was just a little vegetable-bird. Maybe you hadn't played that game yet, no matter, I'll introduce the rule for you first. There are 21 object balls on boar

  • Color the ball HDU15562019-02-08 15:47:29

    这题整整debug了两个小时  不同组居然要初始化  本以为built函数里面已经初始化好了!!!!! 其他无需注意 #include<cstdio> #include<cstring> using namespace std; int n,p,a,b,m,x,y,ans; struct node { int l,r,w,f; }tree[400001]; inline void build(int k,int ll,int rr)//

  • Canvas动画2019-02-02 16:51:56

    玩Canvas玩了有一个礼拜了 平面的东西玩来玩去也就那样 所以就开始折腾动画和3D了 什么是动画? 就像思考哲学问题无法回避思维和存在的关系一样 制作动画同样无法逃避的问题是动画的原理是什么? 图像序列的变化运动给我们最为直观的感受就是图像仿佛真实的在运动一般 由此产生动画效

  • 2019/2/1Python LS1下午的数组(列表)2019-02-01 15:44:05

    '''Array数组/List列表 1、append 后面追加 remove去除 '''# ages = [30,19,19,8,43]# ages.append(3)# names = ['LSS','HLT','HLC','CJW','CMF']# print(ages)# print(dir(ages))things = ['r

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

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

ICode9版权所有