Write a program to find the n-th ugly number. Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. Example: Input: n = 10 Outpu ...
分类:
其他好文 时间:
2020-03-21 19:41:35
阅读次数:
75
原文地址:https://billc.io/2019/05/csapp-cachelab/ 这个实验是这学期的第四个实验。作为缓存这一章的配套实验,设计得非常精妙。难度上来讲,相比之前的修改现成文件,直接写一个程序也更高了一些。需要注意的是检查程序在编译时开启了 -Werror,需要保证没有警告才能 ...
分类:
移动开发 时间:
2020-03-20 20:35:39
阅读次数:
143
You have N integers, A1, A2, ... , AN. You need to deal with two kinds of operations. One type of operation is to add some given number to each number ...
分类:
其他好文 时间:
2020-03-20 18:39:27
阅读次数:
72
[toc] 涵盖知识点:思维、构造、马拉车。 比赛链接: "传送门" D题只有数据范围的区别,故只写D2。 好多题啊,随缘更新。(其实懒得写) "A Bad Ugly Numbers" 题意: 构造一个长度为$n$的数字使得其不能被其中的每一位数整除。 题解: 2333333(雾) Accept C ...
分类:
其他好文 时间:
2020-03-20 14:29:02
阅读次数:
84
"传送门" A. Bad Ugly Numbers 233333。 Code B. Maximums 从前往后依次搞即可。 Code cpp / Author: heyuhhh Created Time: 2020/3/19 22:44:51 / include include include in ...
分类:
其他好文 时间:
2020-03-20 13:03:03
阅读次数:
61
[TOC] 比赛https://codeforces.ml/contest/1326/ A. Bad Ugly Numbers (~~第一题一看和数位dp某题贼像,其实是我看错了,而且看错好久~~) 我的方法是输出 $n 1$ 个 $5$ 和 $1$ 个 $4$,$n=1$ 特判一下 统计了一下群里 ...
分类:
其他好文 时间:
2020-03-20 12:58:42
阅读次数:
63
A. Bad Ugly Numbers time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output You are given a integ ...
分类:
其他好文 时间:
2020-03-20 12:47:21
阅读次数:
68
面试题40. 最小的k个数 问题描述: 输入整数数组 arr ,找出其中最小的 k 个数。例如,输入4、5、1、6、2、7、3、8这8个数字,则最小的4个数字是1、2、3、4。 解题思路: 这题不要直接使用 sort(arr.begin(), arr.end() ) 函数; 时间复杂度:O(n\lo ...
分类:
其他好文 时间:
2020-03-20 12:30:05
阅读次数:
59
浏览器的问题,这个 bug 已经有很久的历史了。[1476379 - Border issue (pixels) when using floating point numbers in css transform: scale()](https://bugzilla.mozilla.org/sho... ...
分类:
其他好文 时间:
2020-03-19 21:30:59
阅读次数:
79
这篇文章中介绍了三种方法分别为: 1、子组件通过使用this.emit('xxx') (xxx:是你要调用的方法名,只要方法名不要后面的小括号) 3、父组件把方法名传给子组件,在子组件里调用这个方法 代码如下: 1、子组件通过使用this.$parent.xxx 父组件代码: <template> ...
分类:
其他好文 时间:
2020-03-19 13:14:23
阅读次数:
58