题目链接:http://codeforces.com/contest/1311/problem/D 题意:有三个数a,b,c,且a<=b<=c。你每次可以选择一个数加1或减1,但不能变为非正数。要求尽可能少的操作完后,使得b%a=0,c%b=0。输出最少操作数,并输出最后的a,b,c。 思路:枚举第 ...
分类:
其他好文 时间:
2020-02-25 23:12:21
阅读次数:
56
题目链接: "Three Integers" 简要题意: 给出 $a, b, c$ 满足 $a \leq b \leq c$。 你可以随便选择其中一个数,使这个数 $+1$ 或 $ 1$。 假设最后操作完 $a$ 为 $A$,$b$ 为 $B$,$c$ 为 $C$。 你需要使 $A | B$ 且 $ ...
分类:
其他好文 时间:
2020-02-25 18:12:59
阅读次数:
53
https://codeforces.com/contest/1311/problem/D 本题题意:给出a,b,c三个数,a<=b<=c; 可以对三个数中任意一个进行+1或-1的操作; 问题:求出最少操作数使这些数满足:b整除a,c整除b 思路:题目中给出abc的范围只有1e4 所以我们可以通过枚 ...
分类:
其他好文 时间:
2020-02-25 17:36:45
阅读次数:
83
threejs所用版本为 114dev 为每个面贴相同的图片 这个简单,几句话就搞定。 var geometry = new THREE.BoxBufferGeometry( 1, 1, 1 ); var texture = new THREE.TextureLoader().load( '**.j ...
分类:
其他好文 时间:
2020-02-25 13:17:45
阅读次数:
212
Given a string s consisting only of characters a, b and c. Return the number of substrings containing at least one occurrence of all these characters ...
分类:
其他好文 时间:
2020-02-25 13:10:02
阅读次数:
53
题目:给你一个字符串 s ,它只包含三种字符 a, b 和 c 。请你返回 a,b 和 c 都 至少 出现过一次的子字符串数目。 链接:https://leetcode-cn.com/problems/number-of-substrings-containing-all-three-charact ...
分类:
其他好文 时间:
2020-02-24 13:25:11
阅读次数:
79
LeetCode 1358. Number of Substrings Containing All Three Characters包含所有三种字符的子字符串数目【Medium】【Python】【双指针】【滑窗】 Problem "LeetCode" Given a string consisti ...
分类:
编程语言 时间:
2020-02-23 11:20:46
阅读次数:
84
题目: Given a string containing only three types of characters: '(', ')' and '*', write a function to check whether this string is valid. We define the ...
分类:
编程语言 时间:
2020-02-22 23:46:53
阅读次数:
104
之前跟朋友讨论前端未来发展方向的时候,朋友有提到移动端,当时我觉得3D也将会是一个方向,于是就去专攻了一下webgl、three.js这些技术并从事这方面的开发。 时光荏苒,现在纵观一下前端开发的实况,感觉就像是下图所示的这样: 难易度上个人感觉:pc < m < 3d ; 然而针对具体的技术,要达 ...
分类:
其他好文 时间:
2020-02-22 20:17:37
阅读次数:
73
1 """ 2 Given an array nums of n integers and an integer target, find three integers in nums such that the sum is closest to target. Return the sum of ...
分类:
其他好文 时间:
2020-02-22 00:41:15
阅读次数:
83