D'Hondt
의견: 0
In the beginning of December, parliamentary elections were held in our country. Croatia is divided in \(10\) election regions. From each region, \(14\) parliamentary representatives are elected. Each of the voters is voting for one of the few parties. After voting, the representatives are elected using the D'Hondt (D"Ont) method.
By this method, first we select parties which gathered at least \(5\%\) of the votes. Number of votes of each of the selected parties is then divided by every number from \(1\) to \(14\). In this way we assign \(14\) rational numbers — let's call them 'scores' — to each of the parties.
First of the \(14\) representatives in a region is chosen from a party with the largest score. Second representative is selected from a party with the second largest score. The third... This procedure continues until all of the \(14\) places are elected. Remark: There will always be a unique way to elect the representatives, i.e. no two scores will be equal.
Write a program that, given the total number of voters and number of votes each party gained, determines how many politicians were elected as region representatives from each party. Some parties have gained negligible number of votes and will not be in the input — that is the reason that the total number of voters might not be equal to the sum of list votes in the input.
In 30% of the test cases, every party in the input will have at least 5% of the votes.
First line of input contains a positive integer \(X\) (\(1 \le X \le 2\,500\,000\)), total number of voters in the region.
Second line of input contains a positive integer \(N\) (\(0 \le N \le 10\)), number of parties we are considering.
Next \(N\) lines contain two positive integers divided by a single space: party identifier (capital letter of English alphabet) and a positive integer \(G\) (\(0 \le G \le 250\,000\)), number of votes gained by that party.
Output is consisted of number of lines equal to the number of parties which had at least \(5\%\) of the votes. For each of these parties, print a party identifier and a number of parliamentary representatives elected from that party. Lines should be sorted by identifiers, alphabetically.
Scoring: In \(30\%\) of the test cases, every party in the input will have at least \(5\%\) of the votes.
| 서브태스크 | 점수 | 설명 |
|---|---|---|
Test 1 | 10점 | None |
Test 2 | 10점 | None |
Test 3 | 10점 | None |
Test 4 | 10점 | None |
Test 5 | 10점 | None |
Test 6 | 10점 | None |
Test 7 | 10점 | None |
Test 8 | 10점 | None |
Test 9 | 10점 | None |
Test 10 | 10점 | None |
235217
3
A 107382
C 18059
B 43265A 9
B 4
C 1245143
4
F 14845
A 104516
B 52652
C 14161A 8
B 4
C 1
F 1206278
5
D 44687
A 68188
C 7008
B 48377
G 9665A 6
B 4
D 4평가 및 의견
D'Hondt
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
D'Hondt