第七届省赛我还在高三,所以没有机会参加,qaq
整体来说:我会的:A 简单搜索(背包也行吧) B跟POj2253查不到 最短路(很多都是并查集写的,不知道为啥) D 动态规划(算裸的吧) F 很水的模拟 H 贪心加简单的排序 G同POJ2567也算是简单的模拟
A:
某地区发生了地震,灾区已经非常困难,灾民急需一些帐篷、衣物、食品和血浆等物资。可通往灾区的道路到处都是塌方,70%以上的路面损坏,桥梁全部被毁。国家立即启动应急预案,展开史上最大强度非作战空运行动,准备向灾区空投急需物资。
一方有难,八方支援。现在已知有N个地方分别有A1,A2,….,An个物资可供调配。目前灾区需要物资数量为M。
现在,请你帮忙算一算,总共有多少种物质调度方案。
假设某地方一旦被选择调配,则其物资数全部运走。
第一行: K 表示有多少组测试数据。
接下来对每组测试数据有2行,第1行: N M
第2行:A1 A2 …… An
2≤K≤8 1
所有数据都是正整数。输入数据之间有一个空格。
假设给定的数据至少有一种调度方案。
对于每组测试数据,输出一行:物资调度的总方案数
24 41 1 2 24 61 1 2 2
31
#include
#include
#define MOD 100000007
#include
#include
#include
#include
#include
B:
10 8
1 2 5
1 3 2
2 3 11
2 4 6
2 4 4
6 7 10
6 10 5
10 7 2
5
2 3
1 4
3 7
6 7
8 3
5
5
-1
5
-1
#include
#include
#include
using namespace std;
const int maxn = 220;
#define INF 0x3f3f3f3f
int n;
int G[maxn][maxn], d[maxn];
void suan(int s)
{
bool vis[maxn];
memset(vis, false, sizeof(vis));
for(int i=0; i<=n; i++)
{
d[i] = G[s][i];
}
d[s] = 0;
vis[s] = true;
for(int i=0; i<=n-1; i++)
{
int m = INF;
int x;
for(int y=0; y<=n; y++)
if(!vis[y] && m >= d[y] )
{
x=y;
m = d[y];
}
/// X记录
vis[x] = true;
for(int y=0; y<=n; y++)
{
if(!vis[y])
{
int maxx= max(d[x], G[x][y]);
if(d[y] > maxx) d[y] = maxx;
}
}
}
}
int main()
{
int m;
while(~scanf("%d%d", &n,&m))
{
for(int i=0; i<=n; i++)
{
for(int j=0; j<=n; j++)
{
if(i==j) G[i][j]=0;
else G[i][j] = G[j][i] =INF;
}
}
int a,b,c;
for(int i=1; i<=m; i++)
{
scanf("%d%d%d",&a,&b,&c);
if(G[a][b]>c)
G[a][b]=G[b][a]=c;
}
int q;
scanf("%d",&q);
while(q--)
{
int s,t;
scanf("%d%d",&s,&t);
suan(s);
if(d[t]==INF)
printf("-1\n");
else printf("%d\n",d[t]);
}
}
}
C 扩展欧几里得的用法,表示看半天也看不懂,我菜怪我喽
某山区的孩子们上学必须经过一条凹凸不平的土路,每当下雨天,孩子们非常艰难。现在村里走出来的Dr. Kong决定募捐资金重新修建着条路。由于资金有限,为了降低成本,对修好后的路面高度只能做到单调上升或单调下降。
为了便于修路,我们将整个土路分成了N段,每段路面的高度分别A1,A2,….,An。由于将每一段路垫高或挖低一个单位的花费成本相同,修路的总费用与路面的高低成正比。
现在Dr. Kong希望找到一个恰好含N个元素的不上升或不下降序列B1,B2,….,Bn,作为修过的路路段的高度。要求:
| A1-B1| + | A2–B2| + ... + | An-Bn|------>最小
第一行: K 表示有多少组测试数据。
接下来对每组测试数据:
第1行: N 表示整个土路分成了N段
第2~N+1行: A1 A2 ……AN 表示每段路面的高度
2≤k≤10 0≤Ai≤107 0≤N≤500 (i=1,…, N)
所有数据都是整数。 数据之间有一个空格。
数据保证| A1-B1|+| A2-B2|+ ... +| An-Bn|的最小值不会超过109
对于每组测试数据,输出占一行:| A1-B1|+| A2-B2|+ ... +| An-Bn|的最小值。
271 3 2 4 5 3 958 6 5 6 2
31
#include
#include
#include
#include
#include
using namespace std;
#define INF 0x3f3f3f3f
int a[600];
int b[600];
int dp[600][600];
bool cmp(int a,int b)
{
return a>b;
}
int main()
{
int test;
scanf("%d",&test);
while(test--)
{
int n,temp;
scanf("%d",&n);
memset(a,0,sizeof(a));
memset(b,0,sizeof(b));
memset(dp,0,sizeof(dp));
for(int i=1; i<=n; i++)
{
scanf("%d",&a[i]);
b[i]=a[i];
}
sort(a+1,a+1+n);
for(int i=1; i<=n; i++)
{
temp=INF;
for(int j=1; j<=n; j++)
{
dp[i][j]=abs(b[i]-a[j]);
temp=min(temp,dp[i-1][j]);
if(temp!=INF)
dp[i][j]+=temp;
}
}
int sum1=INF;
for(int i=1; i<=n; i++)
sum1=min(sum1,dp[n][i]);
sort(a+1,a+1+n,cmp);
for(int i=1; i<=n; i++)
{
temp=INF;
for(int j=1; j<=n; j++)
{
dp[i][j]=abs(b[i]-a[j]);
temp=min(temp,dp[i-1][j]);
if(temp!=INF)
dp[i][j]+=temp;
}
}
int sum2=INF;
for(int i=1; i<=n; i++)
sum2=min(sum2,dp[n][i]);
printf("%d\n",min(sum1,sum2));
}
}
E 没看懂
#include
#include
#define MOD 100000007
#include
#include
#include
#include
#include
G同POJ2567,百科上给出的求解很明白
#include
#include
#include
#include
char a[10005];
int map[55][55];
int du[55];
int n,now;
int la;
int build(char *a)
{
int num=-1;
while(now='0'&&a[now]<='9')
{
if(a[now+1]>='0'&&a[now+1]<='9')
{
num=(a[now]-'0')*10+a[now+1]-'0';
now+=2;
}
else
{
num=a[now]-'0';
now++;
}
if(n
#include
#include
#define MOD 100000007
#include
#include
#include
#include
#include