ASSIGN - Assignments
Problem
Your task will be to calculate number of different assignments of n different topics to n students such that everybody gets exactly one topic he likes.
Input
First line of input contains number of test cases c (1<=c<=80). Each test case begins with number of students n (1<=n<=20). Each of the next n lines contains n integers describing preferences of one student. 1 at the ith position means that this student likes ith topic, 0 means that he definitely doesn't want to take it.
Output
For each test case output number of different assignments (it will fit in a signed 64-bit integer).
Example
Input: 3 3 1 1 1 1 1 1 1 1 1 11 1 0 0 1 0 0 0 0 0 1 1 1 1 1 1 1 0 1 0 1 0 0 1 0 0 1 0 0 1 1 0 1 0 1 0 1 1 1 0 1 1 0 1 1 0 1 1 1 0 1 0 0 1 1 1 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 1 0 1 1 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 0 1 1 1 1 1 0 0 0 1 0 1 0 1 1 0 0 0 1 1 1 1 0 0 0 11 0 1 1 1 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 1 0 0 1 0 1 0 1 0 1 0 1 1 1 0 0 1 0 0 0 0 1 0 1 0 0 1 0 1 1 0 0 0 0 1 1 0 1 0 1 1 1 0 1 1 0 1 0 1 1 0 1 1 0 0 1 0 0 0 1 1 0 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 1 0 1 Output: 6 7588 7426
hide comments
nessaa_05:
2017-07-23 12:16:27
can anyone please explain the question |
|
namitp:
2017-07-07 22:23:55
Nice Question.....
|
|
sharif ullah:
2017-06-15 20:22:52
Need Hints???
|
|
da_201501181:
2017-06-09 07:16:07
Worth solving to learn something new in world of DP..!! |
|
leafbebop:
2017-06-07 09:00:33
I made a heavy test with 80*20*all-one on my laptop, it was 2.921 seconds but I got AC with 0.92 seconds. |
|
akash619j:
2017-05-30 11:30:37
Declared int instead of long long int costed me 1 WA! |
|
akshayvenkat:
2017-05-09 02:58:21
Explanation of first test case :
|
|
Khairo21:
2017-04-03 23:06:45
using printf("%I6d") get WA -_-
|
|
deadpool_18:
2017-03-29 10:10:34
explain the test case please! Last edit: 2017-03-29 13:24:03 |
|
kshubham02:
2017-03-24 14:00:59
O(2^N * N) solution by clearing complete DP array every time ===> TLE
|
Added by: | gawry |
Date: | 2005-10-08 |
Time limit: | 2.997s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: NODEJS PERL6 VB.NET |