WOJ1009-The Legend of Valiant Emigration

The holy topic of human being,love,appears now.Firstly,I'd like to introduce a love song cited from <>
to you as follows.

The Woman
Your lips cover me with kisses;
your love is better than wine.
There is a fragrance about you;
the sound of your name recalls it.
No woman could help loving you.
Take me with you,and we'll run away.
be my king and take me to your room.
We will be happy together,
drink deep,and lose ourselves in love.
No wonder all women love you.
Women of Jerusalem,I am dark but beautiful,
dark as the desert tents of Kedar,
but beautiful as the curtains in Soloman's palace.
Don't look down on me because of my colour,
because the sun has tanned me.
My brotherw were angry with me
and made me work in the vineyard.
I had no time to care for myself.
Tell me,my love,
Where will you lead your flock to graze?
Where will they rest from the noonday sun?
Why should I need to look for you
among the flocks of the other shepherds?

The Man
Don't you know the place,loveliest of women?
Go and follow the flock;
find pasture for your goats near the tents of the shepherds.
You,my love,excite men as a mare excites the stallions of
Pharaoh's chariots.
Your hair is beautiful upon your cheeks
and falls along your neck like jewels.
But we will make for you a chain of gold with ornaments of silver.

The Woman
My king was lying on his couch,
and my perfume filled the air with fragrance.
My lover has the scent of myrrh as he lies upon my breasts.
My lover is like the wild flowers
that bloom in the vineyards at Engedi.

The Man
How beautiful you are,my love;
how your eyes shine with love!

The Woman
How handsome you are,my dearest;
how you delight me!
The green grass will be our bed;
the cedars will be the beams of our house,
and the cypress-trees the ceiling.
I am only a wild flower in Sharon,
a lily in a mountain valley.

The Man
Like a lily among thorns
is my darling among women.

The Woman
Like an apple-tree among the trees of the forest,
so is my dearest compared with other men.
I love to sit in its shadow,
and its fruit is sweet to my taste.
He brought me to his banqueting hall
and raised the banner of love over me.
Restore my strength with raisins
and refresh me with apples!
I am weak from passion.
His left hand is under my head,
and his right hand caresses me.
Promise me,women of Jerusalem;
swear by the swift deer and the gazelles
that you will not interrupt our love.

How beautiful the song is! The God is moved by the holy love between them and decides to help them run away to that place
having full-blown the green grass,the cedars,the cypress-trees and the flowers .There are many cities at that time,such as
Jerusalem,Bethlehem,Carmel,Hebron,Ziklog,Beersheba,Gath,Libnah,Ekron,Beth Horon,Shiloh,Gilgal,and so on.The two lovers
sets out from Jerusalem,and the destination is The Garden of Eden.There are roads between cities,each road has a
guard who has "pguard" power to beat and "sguard" speed to run.The two lovers can run away together,they have "plovers"
power to beat and "slovers" speed to run.  They can go through the road if and only if their power "plovers" is bigger than the guard and the speed "slovers" 

is bigger than the guard..The God help them calculate the cost of each road,and place a

heart-shaped elixir,associated with a letter to distinguish them,in each road.Your task is to minimize the cost

and display the letters of elixirs they will get in the way.

输入格式

There will be several test cases.The first line contains two integers n(1<=n<=100) indicates the number of cities,and m(1<=m<=4000)
indicates the number of roads between cities.The next m lines list the power and speed of the guard,the cost and the letter of the elixir
the God placed for each road.Each line has the form:
u v pguard sguard cost letter while u and v represents the edge ,pguard and sguard represents power and speed of the guard, cost represents the cost of
the road and letter represents the letter of the elixir the God placed.The last line contains
plovers slovers. The city numberd 0 represents Jerusalem,while n-1 represents The Garden of Eden.

输出格式

For each test case,you should output the letters of the elixirs they get in the way which minimize the cost.
There'll be an empty line following each test case.

样例输入

5 5
0 1 10 10 10 L
0 2 20 14 10 A
1 2 10 10 20 o
2 3 10 10 10 V
3 4 5 30 10 E
14 35 

样例输出

LoVE

#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <vector>
#include <queue>
using namespace std;
typedef struct Node{
    int p, s; 
    char l;
}node;
node e[105][105];
int n,m,dist[105],g[105][105],fa[105],plove,slove;

inline bool relax(int u,int v)
{
    if(dist[u]+g[u][v]<dist[v]) 
    {
        dist[v]=dist[u]+g[u][v];
        return true;
    }
    return false;
}
inline bool judge(node e){
	return ((plove>e.p)&&(slove>e.s));
}
 
void spfa(int s)
{
    int vis[n+5];
    memset(vis,0,sizeof(vis));
    queue<int> q;
    q.push(s);
    vis[s] = true;
    dist[s] = 0;
    while(!q.empty())
    {
        int temp=q.front();
        q.pop();
        for(int i=0;i<n;i++) 
            if(g[temp][i]&&judge(e[temp][i])&&relax(temp,i))
            {
                q.push(i);
                fa[i]=temp;
                vis[i]=true;
            }
        vis[temp]=false;
    }
}
int main()
{
    int i,j,a,b,p,s,c;
	char l;
    while(scanf("%d %d",&n,&m)==2){
    	memset(g,0,sizeof(g));
    	memset(e,0,sizeof(e));
    	memset(fa,-1,sizeof(fa));
    	for(i=0;i<n;i++)
    	dist[i]=0x7fffffff;
		for(i=0;i<m;i++){
			scanf("%d%d%d%d%d %c",&a,&b,&p,&s,&c,&l);
			g[a][b]=g[b][a]=c;
			e[a][b].p=e[b][a].p=p;
			e[a][b].s=e[b][a].s=s;
			e[a][b].l=e[b][a].l=l;
		}
		scanf("%d %d",&plove,&slove);
		spfa(0);
		i=n-1,j=0;
		node st[105];
		while(i){
			st[j++]=e[fa[i]][i];
			i=fa[i];
		}
		for(i=j-1;i>=0;i--)
		printf("%c",st[i].l);
		printf("\n\n");
	}
	return 0;
}


#include<stdio.h>
#include<stdlib.h>
#define INF 53356
char str[101][101]; 
int tmp =0; 

void  Ppath(int path[][100],int i2,int j2);
void Dispath(int A[][100],int path[][100],int n);
 
int main()
{
    int ncity,nrode;  
    while(scanf("%d%d",&ncity,&nrode)!=EOF)
    { 
    int a[4000][5];
    char b[4000];
    char c[4000];    
    int i,j;    
    for(i=0;i<nrode;i++)
    {
          for(j=0;j<5;j++)
          {
                  scanf("%d",&a[i][j]);
          } 
          scanf("%s",&b[i]);
    }
    int pl,sl;                
    scanf("%d%d",&pl,&sl);          
    int n,i1,j1,k1;
    int G[100][100];
    int A[100][100],path[100][100];
    for(i1=0;i1<ncity;i1++)
        for(j1=0;j1<ncity;j1++)
        { 
              A[i1][j1]=INF; 
              G[i1][j1]=INF; 
        } 
    for(n=0;n<nrode;n++)
    {      
        int p,q;
        p=a[n][0];
        q=a[n][1]; 
        G[p][q]=a[n][4]; 
        str[p][q]=b[n]; 
    }                         
    for(i1=0;i1<ncity;i1++)
        for(j1=0;j1<ncity;j1++)
        {
               A[i1][j1]=G[i1][j1];
               path[i1][j1]=-1;
        }
    for(n=0;n<nrode;n++)
    {                    
        int p,q;
        p=a[n][0];
        q=a[n][1]; 
        if(a[n][2]>pl||a[n][3]>sl)
        {
              A[p][q]=INF;
        }
    }
    for(k1=0;k1<ncity;k1++)
    {
        for(i1=0;i1<ncity;i1++)
              for(j1=0;j1<ncity;j1++)
                   if(A[i1][j1]>A[i1][k1]+A[k1][j1])
                   {                                                              
                           A[i1][j1]=A[i1][k1]+A[k1][j1];
                           path[i1][j1]=k1;                                                             
                   }
    }
    Dispath(A,path,ncity); 
    } 
    return 0;
} 
void  Ppath(int path[][100],int i2,int j2)
{
    int k2;
    k2=path[i2][j2];
    if(k2==-1)
    {
         return;
    } 
    Ppath(path,i2,k2);
    printf("%c",str[tmp][k2]); 
    tmp = k2; 
    Ppath(path,k2,j2);
}

void Dispath(int A[][100],int path[][100],int n)
{
    Ppath(path,0,n-1);
    printf("%c",str[tmp][n-1]); 
          
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
本项目是一个基于SpringBoot开发的华府便利店信息管理系统,使用了Vue和MySQL作为前端框架和数据库。该系统主要针对计算机相关专业的正在做毕设的学生和需要项目实战练习的Java学习者,包含项目源码、数据库脚本、项目说明等,有论文参考,可以直接作为毕设使用。 后台框架采用SpringBoot,数据库使用MySQL,开发环境为JDK、IDEA、Tomcat。项目经过严格调试,确保可以运行。如果基础还行,可以在代码基础之上进行改动以实现更多功能。 该系统的功能主要包括商品管理、订单管理、用户管理等模块。在商品管理模块中,可以添加、修改、删除商品信息;在订单管理模块中,可以查看订单详情、处理订单状态;在用户管理模块中,可以注册、登录、修改个人信息等。此外,系统还提供了数据统计功能,可以对销售数据进行统计和分析。 技术实现方面,前端采用Vue框架进行开发,后端使用SpringBoot框架搭建服务端应用。数据库采用MySQL进行数据存储和管理。整个系统通过前后端分离的方式实现,提高了系统的可维护性和可扩展性。同时,系统还采用了一些流行的技术和工具,如MyBatis、JPA等进行数据访问和操作,以及Maven进行项目管理和构建。 总之,本系统是一个基于SpringBoot开发的华府便利店信息管理系统,使用了Vue和MySQL作为前端框架和数据库。系统经过严格调试,确保可以运行。如果基础还行,可以在代码基础之上进行改动以实现更多功能。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值