码迷,mamicode.com
首页 >  
搜索关键字:friends    ( 1058个结果
codeforce Round #605(Div.3)
A. Three Friends 题目链接:http://codeforces.com/contest/1272/problem/A 题目意思:有三个好朋友a,b,c。他们在一个坐标轴上,他们的位置分别是xa 和xb ,xc,他们三个人都可以往前或者往后走一步,只能走一步。问你他们走了(也可能不走) ...
分类:其他好文   时间:2019-12-22 12:27:16    阅读次数:98
codeforces605
A. Three Friends #include<bits/stdc++.h> #define rep(i, n) for(int i=0;i!=n;++i) #define per(i, n) for(int i=n-1;i>=0;--i) #define Rep(i, sta, n) for( ...
分类:其他好文   时间:2019-12-19 19:07:18    阅读次数:54
CC 03 Python
CC 03The game rock, paper, scissors is a classic tool used to make important decisions among two friends (read https://www.wikihow.com/Play-Rock,-Pape ...
分类:编程语言   时间:2019-12-19 13:01:43    阅读次数:79
Codeforces Round #605 (Div. 3)
地址:http://codeforces.com/contest/1272 A. Three Friends 仔细读题能够发现|a-b| + |a-c| + |b-c| = |R-L|*2 (其中L = min{a, b, c}, R = max{a, b, c}) 那么本题的移动条件就只考虑两个端 ...
分类:其他好文   时间:2019-12-15 18:55:16    阅读次数:117
python初级(302) 7 列表
一、列表的概念: 1、创建一个列表 friends = list() 2、列表可以包含的内容: m_list = [5, 7, 9, 20] letters = [‘a’, ‘b’, ‘e’] 3、从列表获取元素和修改元素 letters[3] 索引从0开始 m_list[2] = 100 4、列表... ...
分类:编程语言   时间:2019-12-15 00:43:34    阅读次数:88
Codeforces Round #605 (Div. 3) ABCDE 题解
题目链接 A. Three Friends 分析 首先在直线上三点两两间距离之和等于最远的两个点距离的两倍.因此,只需要控制距离最远的两个点即可. 代码 1 #include <bits/stdc++.h> 2 3 using namespace std; 4 5 int main() 6 { 7 ...
分类:其他好文   时间:2019-12-14 15:42:27    阅读次数:82
LeetCode 825. Friends Of Appropriate Ages
原题链接在这里:https://leetcode.com/problems/friends-of-appropriate-ages/ 题目: Some people will make friend requests. The list of their ages is given and ages ...
分类:移动开发   时间:2019-12-10 13:01:19    阅读次数:108
KubeSphere and Friends|12 月 14 日相约北京,不见不散
如今在容器圈提到 Kubernetes,可谓是无人不知无人不晓。KubeSphere 作为一款面向云原生设计的开源项目,目的是在 Kubernetes 之上构建分布式多租户容器管理平台,提供简单易用的操作界面以及向导式操作方式,在降低用户使用容器调度平台学习成本的同时,极大降低开发、测试、运维的日常 ...
分类:其他好文   时间:2019-12-02 18:45:58    阅读次数:102
利用递归实现深拷贝(常见面试题之一)
浅拷贝和深拷贝的区别: 浅拷贝 : 只是将数据中所有的数据引用下来,依旧指向同一个存放地址,拷贝之后的数据修改之后,也会影响到原数据的中的对象数据 深拷贝 : 将数据中所有的数据拷贝下来,对拷贝之后的数据进行修改不会影响到原数据 实现思路: 将要拷贝的数据 obj 以参数的形式传参 声明一个变量 来 ...
分类:其他好文   时间:2019-11-18 10:13:35    阅读次数:87
【必背范文:应用文】九、推荐信
Directions: One of your foreign friends plans to go sightseeing in China. Write an email to recommend a place. 经典范文 Dear Neo, I hear that you are plan ...
分类:其他好文   时间:2019-11-11 18:28:41    阅读次数:178
1058条   上一页 1 ... 4 5 6 7 8 ... 106 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!