Gravatar
cstdio
积分:4748
提交:1198 / 2108
“次短路”不包括迂回,因此单纯的”数值方法“不可行,枚举最短路上的每条边即可

Gravatar
cstdio
积分:4748
提交:1198 / 2108
用的冒泡……好蒻……

题目 29 公路建设 AAAAA
2013-04-06 08:55:40
Gravatar
cstdio
积分:4748
提交:1198 / 2108
绳命中第一次树形背包,撒花庆祝!

Gravatar
hurricane
积分:53
提交:20 / 112
哪位大神有爱心,能不能给我c++的标程我看一下啊

Gravatar
QhelDIV
积分:2339
提交:638 / 1737
Splay很容易就写挂掉。。。

题目 1341 [HNOI 2012] 永无乡
2013-04-05 11:17:19
Gravatar
cstdio
积分:4748
提交:1198 / 2108
一开始居然把分支内部的边也算到它的入度里了……智商是硬伤……

Gravatar
hurricane
积分:53
提交:20 / 112
请大神看一下:为何会没通过,一些数据在电脑上正确,为何到了测评机就过不了,求回答。rp++
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<string>
#include<cstring>
using namespace std;
struct student
{
string s;
int year;
};
int main()
{
freopen("nba.in","r",stdin);
freopen("nba.out","w",stdout);
ios::sync_with_stdio(false);
int N;
scanf("%d",&N);
student stu[N],tt;
for(int i=0;i<N;i++)
cin>>stu[i].s>>stu[i].year;
for(int i=0;i<N-1;i++)
for(int j=0;j<N-i-1;j++)
if(stu[j].year>stu[j+1].year)
{
tt=stu[j];
stu[j]=stu[j+1];
stu[j+1]=tt;
}
for(int i=0;i<N;i++)
cout<<stu[i].year<<" "<<stu[i].s<<endl;
return 0;
}

题目 482 NBA总冠军 WWWWWWWWAW
2013-04-05 08:57:06
Gravatar
cstdio
积分:4748
提交:1198 / 2108
这道题的输出好麻烦……

题目 1298 通讯问题 AAAAA
2013-04-04 14:42:49
Gravatar
cstdio
积分:4748
提交:1198 / 2108
这题挺有意思……壮哉我大数学……

Gravatar
QhelDIV
积分:2339
提交:638 / 1737
求超级用户。。。

Gravatar
cstdio
积分:4748
提交:1198 / 2108
第一次实现树状并查集居然是这个题orz……这题得注意细节,都跪细节上了

Gravatar
cstdio
积分:4748
提交:1198 / 2108
不是弟兄们无能……是样例太蒻……

Gravatar
QhelDIV
积分:2339
提交:638 / 1737
终于过了,有价值!

Gravatar
cstdio
积分:4748
提交:1198 / 2108
这题可以模拟的……就是线性模拟……模拟……

Gravatar
cstdio
积分:4748
提交:1198 / 2108
set++

Gravatar
谁知到呢
积分:5
提交:4 / 6
喜闻乐见的秒了monkey=-=

题目 885 草地排水
2013-03-31 22:36:20
Gravatar
夜の死
积分:98
提交:36 / 68
这题也不用交了。。。和圆桌聚餐一样是萎的

Gravatar
cstdio
积分:4748
提交:1198 / 2108
莫比乌斯反演,记得开long long

题目 536 双亲数 AAAAAAAAAA
2013-03-31 16:53:01
Gravatar
cstdio
积分:4748
提交:1198 / 2108
一遍撸过我自嚎……好久没有这样的RP了

Gravatar
Domacles
积分:273
提交:113 / 363
拜大神~~

题目 68 [NOIP 2005]采药
2013-03-30 17:07:11