Description
Problem G
Toll! Revisited
Input: Standard Input
Output: Standard Output
Time Limit: 1 Second
Sindbad the Sailor sold 66 silver spoons to the Sultan of Samarkand. The selling...
分类:
其他好文 时间:
2014-07-21 13:35:07
阅读次数:
263
最短路水题,这次用SPFA写#include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std...
分类:
其他好文 时间:
2014-07-18 21:02:55
阅读次数:
207
The Jordan 5 3Lab5 Metallic Silver returns inside a mind-turning new iteration for that Spring/Summer time 2014 season. Getting together the very best...
分类:
其他好文 时间:
2014-07-18 15:25:12
阅读次数:
231
Description
Some of you may have played a game called 'Blocks'. There are n blocks in a row, each box has a color. Here is an example: Gold, Silver, Silver, Silver, Silver, Bronze, Bronze, Bronze, Go...
分类:
其他好文 时间:
2014-07-18 11:23:05
阅读次数:
280
页提供了被大多数浏览器支持的颜色名。提示:仅有 16 种颜色名被 W3C 的 HTML 4.0 标准支持,它们是:aqua、black、blue、fuchsia、gray、green、lime、maroon、navy、olive、purple、red、silver、teal、white、yellow...
分类:
Web程序 时间:
2014-07-17 22:20:12
阅读次数:
545
求来回最短路加起来最长的一条。
两次SPFA,然后选某个点的来回最长。(有向图)
Dijkstra+邻接矩阵 比较方便建立 反向图。
我用SPFA+2个邻接表(正图+反图),C++ 32ms。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
...
分类:
其他好文 时间:
2014-07-03 16:01:33
阅读次数:
173
“你当然可以不相信理想,但是你也应该相信,有一些人相信理想”
google I/O今日发布了许多新品,罗列为:Android Wear,Android Auto,Android TV,Android L,Google Fit 5个软件平台,Material Design设计语言和Android One手机,也提及了Android Silver。
哇哦,我想google...
分类:
移动开发 时间:
2014-06-27 10:44:15
阅读次数:
300
题目描述After several years of record milk production, Farmer John now operates an entire network of N farms (1 = B_2 >= B_3), then FJ wants to make B_1 a...
分类:
其他好文 时间:
2014-06-21 07:57:04
阅读次数:
355
## if (I am a Programmer || I have a strong sense of time) I use ag___##1. 安装命令行ag(代码中行首的“\\”是多余的)```bash\#!/usr/bin/env bash\#Author Leslie Guan\#ma....
分类:
其他好文 时间:
2014-06-21 07:55:03
阅读次数:
241
点击打开链接
两次求最短路(第二次把边反向求)
1、spfa
//poj 3268 Silver Cow Party
//SPFA
#include
#include
#include
using namespace std;
const int M = 100000 + 100;
const int N = 1000 + 100;
const int inf = 1...
分类:
其他好文 时间:
2014-06-08 05:29:39
阅读次数:
241