摘要: A.激光炸弹 阅读全文
posted @ 2019-03-15 07:28 LightAc 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 问题一(数字根问题) 问题二(电梯问题) (1)Problem Description The highest building in our city has only one elevator. A request list is made up with N positive numbers. 阅读全文
posted @ 2019-03-14 22:55 LightAc 阅读(139) 评论(0) 推荐(0) 编辑
摘要: A.POJ_1321考查DFS的一个循环中递归调用 1 #include<iostream> 2 #include<cstring> 3 4 using namespace std; 5 char a[10][10]; //记录棋盘位置 6 int book[10]; //记录一列是否已经放过棋子 阅读全文
posted @ 2019-03-14 22:29 LightAc 阅读(240) 评论(0) 推荐(0) 编辑
摘要: EG1 激光炸弹题意:给你n个点的坐标及权值,用r * r的范围最大覆盖是多少题解//二维的 前缀和 问题#include #include using namespace std;int n, r;int ta, tb;int x, y, w;int s... 阅读全文
posted @ 2019-03-13 15:05 LightAc 阅读(584) 评论(0) 推荐(0) 编辑
摘要: 题目:https://blog.csdn.net/qq_43591782/article/details/88417426第一题#include #include using namespace std;int main() { int num = 0; c... 阅读全文
posted @ 2019-03-13 13:12 LightAc 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 问题一(数字根问题)#include #include using namespace std;int roots(int num) { int res = 0; while (num) { res += num % 10; num /= 10; } i... 阅读全文
posted @ 2019-03-12 22:33 LightAc 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 第一题 第二题 第三题 第四题 第五题 第六题 阅读全文
posted @ 2019-03-12 11:30 LightAc 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-03-09 23:14 LightAc 阅读(3943) 评论(0) 推荐(0) 编辑
摘要: 1.1 逻辑变量及其基本运算1.三个运算符或:+与:·非:-(在字母上方)2.七组基本公式:(背过)对于最后一个公式的证明:A + BC = A(1 + B + C) + BC ························· 由于1与上任何数都为1=A... 阅读全文
posted @ 2019-03-09 23:09 LightAc 阅读(1043) 评论(0) 推荐(0) 编辑
摘要: fraternity n. 大学男生联谊会rehearsal n. 排演,排练stock n. 股票leisure n. 娱乐tuition n. (学院、大学或私立学校的)学费grant n. 助学金annual a. 一年一次的Instagram 一款图... 阅读全文
posted @ 2019-03-09 16:33 LightAc 阅读(295) 评论(0) 推荐(0) 编辑
返回顶端