程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> bi-Three Eggache God

bi-Three Eggache God

編輯:編程解疑
Three Eggache God

問題描述 :

Alpheus has n monsters,their heights are A1,A2,A3….An. God Kufeng has n sons,their heights are 1,2,3….n.
One day, Our daredevil God Kufeng wants to challenge Alpheus. He sends his n sons to fight with Alpheus’s n monsters ,the i-th son fighting with the i-th monster. During one challenge,if the i-th son’s height is equal or greater than the i-th monster’s height,the i-th son will get one score for his father,else,he’ll get nothing.
Since Alpheus is strong enough to accept an infinity number of challenges,God Kufeng can challenge Alpheus again and again,but he has to change his son’s order after every challenge,and the same permutation can not appear more than once.(that is,God Kufeng has n! times to challenge Alpheus).
Now,God Wu–the god of universe,wants to make things difficult to Kufeng.He has n sons too,their heights are W1,W2,W3….Wn(it is a permutation of 1,2,3…..n),God Wu said to Kufeng: Only when the lexicographic order of your sons’ heights is bigger than my son’s,you can challenge my lovely Alpheus!
Question:What is the total score God Kufeng can get?Output the answer mod 1000000007.
Note:
Alpheus will never change his monster’s order,God Wu will never change his son’s order.
For two permutation A and B,if Ai=Bi for all i(1<=i<=n),we say A=B.else,we get the smallest i that Ai!=Bi,if Ai>Bi,we say A’s lexicographic order is bigger than B,otherwise,B is bigger than A.
輸入:

First,there is an integer T(T<=20),the number of test cases.
For every case,there are three lines.
The first line is an integer n(1<=n<=2000),the number of sons of God Kufeng.
The second line has n integers,W1,W2,W3…..Wn,the heights of God Wu’s sons.(we guarantee that W1,W2,W3…..Wn is a permutation of 1,2,3….n).
The third line also has n integers, A1,A2,A3….An(1<=Ai<=n),the heights of Alpheus’s monsters.
輸出:

First,there is an integer T(T<=20),the number of test cases.
For every case,there are three lines.
The first line is an integer n(1<=n<=2000),the number of sons of God Kufeng.
The second line has n integers,W1,W2,W3…..Wn,the heights of God Wu’s sons.(we guarantee that W1,W2,W3…..Wn is a permutation of 1,2,3….n).
The third line also has n integers, A1,A2,A3….An(1<=Ai<=n),the heights of Alpheus’s monsters.
樣例輸入:

2
3
3 1 2
1 2 3
3
3 2 1
1 1 1
樣例輸出:

Case #1: 2
Case #2: 0

最佳回答:


http://www.acmerblog.com/hdu-4356-three-eggache-god-7367.html

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved