面向对象问题 ,Object Oriented Programming ...
分类:
其他好文 时间:
2020-03-27 12:51:40
阅读次数:
61
A "Divisibility Problem" 题意 给你两个正整数$a,b$ 你每次可以执行一次$a++$操作,问你最小的操作步数,使得$a$能被$b$整除 思路 数学 分情况讨论 当$ab$ 时,只要把$a$调整到离$kb$最近的一个$b$的倍数,即$\lceil {a / b}\rceil ...
分类:
其他好文 时间:
2020-03-27 11:16:20
阅读次数:
82
题目链接:https://codeforces.com/problemset/problem/1327/D 根据题意,数组的第i位连第p[i]位,第p[i]位连第p[p[i]]位...一直连下去,因为存的是一个1~n的排列,所以最后一定会形成一个或多个闭环 现在我们把一个闭环单独拿出来讨论 假设最初 ...
分类:
其他好文 时间:
2020-03-26 20:01:20
阅读次数:
60
Problem A. Balanced Fighters https://codeforces.com/group/5yyKg9gx7m/contest/273522/problem/B 题目描述: 每2个fighter之间打。问A打赢B,B打赢C,C打赢A的组合有多少个。(输出顺序任意,但每组只能 ...
分类:
其他好文 时间:
2020-03-26 15:12:49
阅读次数:
74
There is a problem when I login into Ubuntu in GUI, it always loop in the GUI login. I searched in internet, there are lots of solutions, but only bel ...
分类:
系统相关 时间:
2020-03-26 10:50:56
阅读次数:
94
Problem : Given an array nums and a value val, remove all instances of that value in place and return the new length. Do not allocate extra space for ...
分类:
其他好文 时间:
2020-03-26 01:25:20
阅读次数:
65
Problem : Given a sorted array nums, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate ...
分类:
其他好文 时间:
2020-03-26 01:03:12
阅读次数:
78
Problem : Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Example 2: E ...
分类:
其他好文 时间:
2020-03-25 23:26:15
阅读次数:
73
链接:https://www.acwing.com/problem/content/1016/ 算法 目标:所有形状先上升后下降的子序列的长度最大值 两次LIS求解 代码 ...
让最大值走得最多就好了,让最大值走最长链的长度,然后把最长链上的点都打上标记,再从所有没有被标记的点里找次长链,让次大值跑这个题我最后一小时写慌了,思路乱了,队友写得很妙,tql #include <iostream> #include <cstdio> #include <queue> #incl ...
分类:
Web程序 时间:
2020-03-25 21:28:44
阅读次数:
91