第一行包含两个以空格分隔的整数,分别为N和M。
接下来M行描述连接区域之间的路的情况
每一行给出四个以空格分隔的整数A B C D,表示A区域和B区域之间有一条路,
Bessie需要C个单位时间来走完这条路,而Elsie需要D个单位时间来走。
C和D都在区间1..100内。
3 3
1 3 1 2
1 2 1 2
2 3 1 2
2
SOLUTION NOTES:
Bessie is twice as fast as Elsie on each path, but if Bessie takes the
path 1->2->3 and Elsie takes the path 1->3 they will arrive at the
same time.