Cerinta completa

David has several containers, each with a number of balls in it. He has just enough containers to sort each type of ball he has into its own container. David wants to sort the balls using his sort method.

David wants to perform some number of swap operations such that:

  • Each container contains only balls of the same type.
  • No two balls of the same type are located in different containers.

Example

David has containers and different types of balls, both of which are numbered from to . The distribution of ball types per container are shown in the following diagram.

image

In a single operation, David can swap two balls located in different containers.

The diagram below depicts a single swap operation:

image

In this case, there is no way to have all green balls in one container and all red in the other using only swap operations. Return Impossible.

You must perform queries where each query is in the form of a matrix, . For each query, print Possible on a new line if David can satisfy the conditions above for the given matrix. Otherwise, print Impossible.

Function Description

Complete the organizingContainers function in the editor below.

organizingContainers has the following parameter(s):

  • int containter[n][m]: a two dimensional array of integers that represent the number of balls of each color in each container

Returns

  • string: either Possible or Impossible

Input Format

The first line contains an integer , the number of queries.

Each of the next sets of lines is as follows:

  1. The first line contains an integer , the number of containers (rows) and ball types (columns).
  2. Each of the next lines contains space-separated integers describing row .

Constraints

Scoring

  • For of score, .
  • For of score, .

Output Format

For each query, print Possible on a new line if David can satisfy the conditions above for the given matrix. Otherwise, print Impossible.

Sample Input 0

2
2
1 1
1 1
2
0 2
1 1

Sample Output 0

Possible
Impossible

Explanation 0

We perform the following queries:

  1. The diagram below depicts one possible way to satisfy David’s requirements for the first query:
    image
    Thus, we print Possible on a new line.
  2. The diagram below depicts the matrix for the second query:
    image
    No matter how many times we swap balls of type and between the two containers, we’ll never end up with one container only containing type and the other container only containing type . Thus, we print Impossible on a new line.

Sample Input 1

2
3
1 3 1
2 1 2
3 3 3
3
0 2 1
1 1 1
2 0 0

Sample Output 1

Impossible
Possible

Limbajul de programare folosit: python3

Cod:

#!/bin/python3

def organizingContainers(container):
    row = sorted(sum(r) for r in container)
    n = len(container)
    col = sorted(sum(container[i][j] for i in range(n)) for j in range(n))
    return 'Possible' if row == col else 'Impossible'

if __name__ == '__main__':
    q = int(input().strip())
    out = []
    for _ in range(q):
        n = int(input().strip())
        container = [list(map(int, input().split())) for _ in range(n)]
        out.append(organizingContainers(container))
    print(*out, sep='\n')

Scor obtinut: 1.0

Submission ID: 464588565

Link challenge: https://www.hackerrank.com/challenges/organizing-containers-of-balls/problem

Organizing Containers of Balls