简单题View Code #include <iostream>#include <cstdlib>#include <cstring>#include <cstdio>using namespace std;int main(){ //freopen("D:\\t.txt", "r", stdin); int n, k; while (scanf("%d%d", &n, &k) != EOF) { int ans = n + (n / (k - 1)); if (n %
转载
2011-04-30 15:57:00
8阅读
2评论
Diciption Let's consider m apples divided into n groups. Each group contains no more than 100 apples, arranged in a line. You can take any number of c
转载
2018-03-05 14:48:00
54阅读
2评论
点击打开链接Be the WinnerTime Limit: 2000/1000 MS (Java/Others) Memory Lim
原创
2022-09-07 16:38:28
48阅读
Be the Winner Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2177 Accepted Submission(s): 1180
Pro
原创
2023-02-20 01:44:19
80阅读
Be the WinnerTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 2713 Accepted Submission(s): 1484Problem DescriptionLet's consider m
原创
2023-04-20 06:15:02
55阅读
P2509 [SCOI2008]警告 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn) 写在前面的话 第一篇 c++ 题解。 见过真正恶心的模拟题吗,这道就是了。(我贡献了 4 页提交记录(我敲 勇 的。 这可以为你以后的开发工作打(提)下(前)基(劝)础(退) 总之题目就是想让你实 ...
转载
2021-07-27 11:59:00
105阅读
2评论
2509: 奇怪的分式时间限制: 1 Sec 内存限制: 128 MB提交: 113 解决: 48题目描述上小学的时候,小明经常自己发明新算法。一次,老师出的题目是: 1/4 乘以 8/5 小明居然把分子拼接在一起,分母拼接在一起,答案是:18/45 (参见图1.png)老师刚想批评他,转念一想,这个答案凑巧也对啊,真是见鬼!
原创
2022-08-10 11:16:30
42阅读
Be the Winner Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 4699 Accepted Submission(s): 2576 P
转载
2018-07-22 13:33:00
58阅读
2评论
题目:http://acm.hdu.edu.cn/showproblem.php?pid=2509题意:有m个苹果分成n组,两个人
原创
2017-08-25 16:19:23
32阅读
Be the WinnerTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 2308 Ac DescriptionLet's consid
原创
2023-04-21 01:56:08
26阅读
#include <cstdio>#include <cstring>#include <iostream>#include <algorithm>using namespace std;const int maxn = 1000;int n, a[maxn];int main() { while (~scanf("%d", ...
原创
2022-08-17 15:34:43
48阅读
水:hdu 1846:#include<cstdio>
#include<cstring>
#include<stdlib.h>
#include<algorithm>
#include<iostream>
#include<math.h>
#include<vector>
#include<map>
原创
2023-09-12 10:46:16
41阅读
使用Cisco路由器反向Telnet做终端服务器
如果我们有多台路由器用来做实验的话,如果是按照控制线一台一台的配置的话会非常得麻烦,所以我们需要配置一台终端服务器用于在此登陆其他的机器,具体做法如下:将Cisco 2509安装八爪鱼线缆,注意只安装线缆,不需要装DB25-RJ45转换器。将八爪鱼线缆RJ45一头插入其他Cisco设备的Console口。然后配置这台2509:
Line tty 1
原创
2009-11-13 20:07:09
1173阅读
题目大意:输入一个整数n,表示火柴堆数(原题其实指的是苹果堆数,但是为了尽量与模板保持一致,所以在这里理解为火柴堆数。。。。其实理解为什么都没关系,重要的是,理解就行。。。。)。在接下来的一行中,有n个数字,表示每个火柴堆的火柴根数。 解题思路:还是去火柴棒的问题详细的说明请参考上一篇博客 代码如下:/* * 2509_1.cpp * * Created on: 2013年9月1日 * Author: Administrator */#include using namespace std;int main(){ int sum1; int sum2; int ans; int n...
转载
2013-09-01 20:19:00
39阅读
2评论
基础的NIM博弈,系统学习博弈的话推荐去看:http://blog.csdn.net/acm_
原创
2023-07-17 18:09:48
29阅读
就是 好几堆苹果 每堆苹果排成一条线 可以任意从每堆拿苹
转载
2018-07-20 07:52:00
73阅读
2评论
Configuring a Terminal/Comm Server
In this section, you are presented with the information to configure the features described in this document.
Note: To find additional information on the c
翻译
精选
2006-11-11 12:11:40
4582阅读
题意 "题目链接" Sol 神仙题Orz 首先不难看出如果我们从$a_i$向$i$连一条边,我们会得到以$0$为根的树(因为每个点一定都有一个入度,出现环说明无解),同时在进行排列的时候需要保证父亲节点一定在孩子节点之前出现 接下来考虑直接贪心。对于某些权值很小的点,我们需要让其尽早出现,同时又要满
原创
2021-06-04 23:12:24
83阅读
在修改代码,使下面的类继承于一个基类后,又改回来不用基类了,编译出现下面的错:IMPLEMENT_DYNCREATE(CBTSystemResult, CBCGPDialog)// 这里提示出错。 错误 C2509 “CreateObject”: 成员函数没有在“CXXXXX”中声明,不知道为什么, ...
转载
2021-07-28 15:44:00
501阅读
2评论