Recently, you bought a brand new smart lamp with programming features. At first, you set up a schedule to the lamp. Every day it will turn power on at ...
分类:
其他好文 时间:
2018-07-06 01:42:52
阅读次数:
512
C. Covered Points Count time limit per test 3 seconds memory limit per test 256 megabytes input standard input output standard output You are given nn ...
分类:
其他好文 时间:
2018-07-05 14:58:36
阅读次数:
274
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=1176 免费馅饼 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submis ...
分类:
其他好文 时间:
2018-06-08 22:09:24
阅读次数:
214
#include<iostream>using namespace std;int main(){ int n,i; long long sum,x; cin>>n; sum=0; for(i=1;i<=n;i++){ cin>>x; sum=sum+x-1; if(sum%2){ cout<<"1 ...
分类:
其他好文 时间:
2018-06-07 19:38:46
阅读次数:
110
题目链接:http://codeforces.com/problemset/problem/552/C 题目大意:有101个砝码重量为w^0,w^1,....,w^100和一个重量为m的物体,问能否在天平两边放物品和砝码使其平衡。解题思路:将m化为w进制的数,接下来从低到高遍历没一位:如果第i位是0 ...
分类:
其他好文 时间:
2018-06-04 11:35:16
阅读次数:
135
逻辑思维题 算法 随机数 案例讲解 猜字游戏 百钱买白鸡问题 穷举法 程序错误与调试 常见错误 编译错误 运行时错误 逻辑错误 调试方法 ...
分类:
其他好文 时间:
2018-06-03 12:45:32
阅读次数:
142
1、有一口7米深的井,有个蜗牛从井底往上爬,白天爬3米,晚上往下坠2米,问蜗牛几天能从井底爬到井口? 总共需要5天 除过最后一天上升3米外,其余每天正常上升1米。所以7-3=4,前4天每天上升1米总共上升4米,第五天上升3米总共上升7米 2、你被困在一座荒岛上,救援要四天之后才能到达。 你有一种特殊 ...
分类:
其他好文 时间:
2018-05-27 23:36:05
阅读次数:
247
B. Destruction of a Tree time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output B. Destruction o ...
分类:
其他好文 时间:
2018-05-25 00:20:27
阅读次数:
196
题目背景 蒟蒻HansBug在语文考场上,挠了无数次的头,可脑子里还是一片空白。 题目描述 考试开始了,可是蒟蒻HansBug脑中还是一片空白。哦不!准确的说是乱七八糟的。现在首要任务就是帮蒟蒻HansBug理理思维。假设HansBug的思维是一长串字符串(字符串中包含且仅包含26个字母),现在的你 ...
分类:
其他好文 时间:
2018-05-24 13:57:31
阅读次数:
190
题目链接 题意 : 给出一个排列,让你删除一个数,使得删除后整个序列的 Good 数数量最多。Good 数的定义为 若 Ai 为 Good 则存在 Aj < Ai ( j < i ) 分析 : 画画几个规律就能得出如下几个结论 ① 若删除一个 Good 数,则原序列 Good 数的数量只会减一,即只 ...
分类:
其他好文 时间:
2018-05-23 00:07:10
阅读次数:
189