##General English:8 ###Unit5 Purchasing a product ###Vocabulary for making a purchase Practice the vocabulary for buying things. Select a card and lis ...
分类:
其他好文 时间:
2021-06-22 17:55:40
阅读次数:
0
(Buying Guide)Nexiq USB Link 1 or 2? WiFi or Bluetooth? Nexiq 1 or Nexiq 2? Nexiq 1 is discontinued. no more updates but for most people it will still ...
分类:
其他好文 时间:
2020-10-22 22:46:03
阅读次数:
26
(Buying Guide)Nexiq USB Link 1 or 2? WiFi or Bluetooth? Nexiq 1 or Nexiq 2? Nexiq 1 is discontinued. no more updates but for most people it will still ...
分类:
其他好文 时间:
2020-10-22 22:45:27
阅读次数:
25
/** * 模板设计模式:定义一个操作算法中的框架 * @author lin * */ public class Cook{ public void lunch() { buying(); washing(); cooking(); eating(); } public void buying() ...
分类:
编程语言 时间:
2020-07-03 17:28:35
阅读次数:
64
Rustlings_test1 练习过程中的随手记,很多问题也未深究,,简单问题可能直接贴改完之后的代码,..分享出来,若能帮助大家,意外乐趣 // test1.rs // This is a test for the following sections: // - Variables // - ...
分类:
其他好文 时间:
2020-06-11 13:24:30
阅读次数:
59
题目大意 有 $k$ 种包裹 第 $i$ 种包裹中有 $i$ 个物品($1\le i\le k$) 需要购买 恰好 $n$ 个物品 只能购买一种包裹,但是可以购买无数次该包裹 问最少的购买次数 解法 设 $m=\min\{\lfloor \sqrt{n}\rfloor,k\}$,其意义是买若干次包裹 ...
分类:
其他好文 时间:
2020-05-25 21:06:31
阅读次数:
113
给定一个长度为 $ n $ 的 $ 1-n $ 的全排列,第 $ i $ 个数表示站在第 $ i $ 位的学生的编号
给定 $ m $ 对 $ (u,v) $,如果编号 $ u $ 的学生在编号 $ v $ 的学生前面一位,则可以将他们的位置互换,问最后一个学生能向前移动多少位 ...
分类:
其他好文 时间:
2020-05-05 10:53:20
阅读次数:
68
import pandas as pd # 加载数据集 df = pd.read_csv( "http://labfile.oss.aliyuncs.com/courses/1211/car.data", header=None) # 设置列名 df.columns = ['buying', 'ma ...
分类:
其他好文 时间:
2020-03-29 19:50:09
阅读次数:
196
官方题解给出的是 $O(t\log s)$ 的解法,但实际上我们可以做到单次查询 $O(1)$ 的 $O(t)$ 做法. 同样是贪心,可以看出,我们每次花费 $10$ 显然可以做到花费钱数最大化. 故 $\mathbf{ans}= \begin{cases} \lfloor \dfrac{s}{9} ...
分类:
其他好文 时间:
2020-02-06 15:01:34
阅读次数:
110
codeforces 1296 题解 A. Array with Odd Sum 想要数组加和为奇数,可以从数组长度是奇数还是偶数着手 若数组长度为偶数,则数组全奇或全偶必定不能构造满足题目要求的数列 若数组长度为奇数,则数组全偶必定不能构造满足题目要求的数列 B. Food Buying 原谅我不 ...
分类:
其他好文 时间:
2020-02-06 14:34:22
阅读次数:
90