#x1049. CF1187G Gang Up

CF1187G Gang Up

Gang Up

题面翻译

有一个 nn 个点 mm 条边的无向连通图上有kk人,这些人要到 11 号点。每个时刻一个人可以走一条边,也可以不走。

一个人如果过了 tt 时刻才到 11 号点,要付出 ctc\cdot t 的代价。

如果一条边在一个时刻一个方向上同时被 aa 个人走,要付出 da2d\cdot a^2 的代价。

求最小代价。

题目描述

The leader of some very secretive organization has decided to invite all other members to a meeting. All members of the organization live in the same town which can be represented as n n crossroads connected by m m two-directional streets. The meeting will be held in the leader's house near the crossroad 1 1 . There are k k members of the organization invited to the meeting; i i -th of them lives near the crossroad ai a_i .

All members of the organization receive the message about the meeting at the same moment and start moving to the location where the meeting is held. In the beginning of each minute each person is located at some crossroad. He or she can either wait a minute at this crossroad, or spend a minute to walk from the current crossroad along some street to another crossroad (obviously, it is possible to start walking along the street only if it begins or ends at the current crossroad). In the beginning of the first minute each person is at the crossroad where he or she lives. As soon as a person reaches the crossroad number 1 1 , he or she immediately comes to the leader's house and attends the meeting.

Obviously, the leader wants all other members of the organization to come up as early as possible. But, since the organization is very secretive, the leader does not want to attract much attention. Let's denote the discontent of the leader as follows

  • initially the discontent is 0 0 ;
  • whenever a person reaches the crossroad number 1 1 , the discontent of the leader increases by cx c \cdot x , where c c is some fixed constant, and x x is the number of minutes it took the person to reach the crossroad number 1 1 ;
  • whenever x x members of the organization walk along the same street at the same moment in the same direction, dx2 dx^2 is added to the discontent, where d d is some fixed constant. This is not cumulative: for example, if two persons are walking along the same street in the same direction at the same moment, then 4d 4d is added to the discontent, not 5d 5d .

Before sending a message about the meeting, the leader can tell each member of the organization which path they should choose and where they should wait. Help the leader to establish a plan for every member of the organization so they all reach the crossroad 1 1 , and the discontent is minimized.

输入格式

The first line of the input contains five integer numbers n n , m m , k k , c c and d d ( 2n50 2 \le n \le 50 , n1m50 n - 1 \le m \le 50 , 1k,c,d50 1 \le k, c, d \le 50 ) — the number of crossroads, the number of streets, the number of persons invited to the meeting and the constants affecting the discontent, respectively.

The second line contains k k numbers a1 a_1 , a2 a_2 , ..., ak a_k ( 2ain 2 \le a_i \le n ) — the crossroads where the members of the organization live.

Then m m lines follow, each denoting a bidirectional street. Each line contains two integers xi x_i and yi y_i ( 1xi,yin 1 \le x_i, y_i \le n , xiyi x_i \ne y_i ) denoting a street connecting crossroads xi x_i and yi y_i . There may be multiple streets connecting the same pair of crossroads.

It is guaranteed that every crossroad can be reached from every other crossroad using the given streets.

输出格式

Print one integer: the minimum discontent of the leader after everyone reaches crossroad 1 1 .

样例 #1

样例输入 #1

3 2 4 2 3
3 3 3 3
1 2
2 3

样例输出 #1

52

样例 #2

样例输入 #2

3 3 4 2 3
3 2 2 3
1 2
2 3
2 3

样例输出 #2

38

提示

The best course of action in the first test is the following:

  • the first person goes along the street 2 2 to the crossroad 2 2 , then goes along the street 1 1 to the crossroad 1 1 and attends the meeting;
  • the second person waits one minute on the crossroad 3 3 , then goes along the street 2 2 to the crossroad 2 2 , then goes along the street 1 1 to the crossroad 1 1 and attends the meeting;
  • the third person waits two minutes on the crossroad 3 3 , then goes along the street 2 2 to the crossroad 2 2 , then goes along the street 1 1 to the crossroad 1 1 and attends the meeting;
  • the fourth person waits three minutes on the crossroad 3 3 , then goes along the street 2 2 to the crossroad 2 2 , then goes along the street 1 1 to the crossroad 1 1 and attends the meeting.