Monthly Expense
Time Limit:2000MS Memory Limit:65536KB 64bit IO Format:%I64d
& %I64u
Submit Status Practice POJ
3273
Appoint description:
System Crawler (2015-05-28)
Descrip...
分类:
其他好文 时间:
2015-06-01 11:40:09
阅读次数:
110
题意:给出n天的花费,需要将这n天的花费分成m组,使得每份的和尽量小,求出这个最小的和看题目看了好久不懂题意,最后还是看了题解二分答案,上界为这n天花费的总和,下界为这n天里面花费最多的那一天如果mid>=m,说明mid偏小,l=mid+1,如果mid 2 #include 3 #inclu...
分类:
其他好文 时间:
2015-05-31 19:58:59
阅读次数:
123
注意,是该月中的周次,一周最多有6周。
//获取周开始日期和结束日期(周日-周六)
public string GetWeekDate(int yearly, int monthly, string weekly)
{
string dayStr="";
try
{...
分类:
其他好文 时间:
2015-05-22 11:31:14
阅读次数:
151
Monthly Expense
Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 16813
Accepted: 6666
Description
Farmer John is an astounding accounting wizard and has rea...
分类:
其他好文 时间:
2015-05-16 10:33:59
阅读次数:
100
题目大意:有一个人财政赤字了,每天都要还一定数量的钱,共要还N天。
现在他要求把这N天还的钱变成M次还掉,也就是说不用每天都还了,可以累积一定的天数再还。
现在要求M次还掉的钱中,钱的最大值达到最小,问这个最小值是多少解题思路:最大值最小,二分解决
枚举的最小值是每天还的钱中的最大值,最大值是每天还的钱的总和
因为每次枚举的钱肯定是大于等于每天还的钱中的最大值的,所以最多可以分成N个集合,然...
分类:
其他好文 时间:
2015-05-11 21:58:40
阅读次数:
120
[root@P_MONTHLY_APP001 ~]# cat /opt/nginx-1.2.9/conf/nginx.conf#user nobody;user root;worker_processes 1;worker_cpu_affinity 11111111;error_log logs/e...
分类:
其他好文 时间:
2015-05-07 16:40:35
阅读次数:
404
题意:
我没看懂题意...
有n个数字,要把他们分成m组,每组都是连续的几个数字,要求使数字和最大的组 最小
解题思路:
二分最小数字和 判断是否能够分成至少M组
下界是max(a[1] ~a[n]) 上界是a[1] + a[2] + ....+ a[n];
code:
#include
#include
#include
#include
#include
#include
#in...
分类:
其他好文 时间:
2015-04-22 00:44:03
阅读次数:
154
#includeusing namespace std;#define N 100001int n,m,a[N];bool check(int x){ int now=0,sum=1; for(int i=1;ix||sum>m) return 0; } } retur...
分类:
其他好文 时间:
2015-04-20 12:54:32
阅读次数:
113
AQtGui.QCalendarWidgetprovides a monthly based calendar widget. It allows a user to select a date in a simple and intuitive way.#!/usr/bin/python# -*-...
分类:
其他好文 时间:
2015-04-17 20:24:07
阅读次数:
157
highcharts api 中文网
地址:http://www.hcharts.cn/demo/index.php?p=10&theme=skies
代码示例
$(function () {
$('#container').highcharts({
title: {
text: 'Monthly Aver...