-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathA.java
50 lines (44 loc) · 1.39 KB
/
A.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import java.io.PrintStream;
import java.util.*;
/**
* KickStart 2017 Practice Round Problem A: Country Leader
* Check README.md for explanation.
*/
public class Main {
class Node {
String s;
int num;
public Node(String _s) {
s=_s;
boolean[] cnt=new boolean[26];
for (char c: s.toCharArray())
if (c!=' ')
cnt[c-'A']=true;
num=0;
for (boolean b: cnt)
if (b)
num++;
}
}
private String solve(Scanner scanner) {
int n=scanner.nextInt();
scanner.nextLine();
Node[] nodes=new Node[n];
for (int i=0;i<n;i++) {
nodes[i]=new Node(scanner.nextLine());
}
Arrays.sort(nodes, (o1,o2)->o1.num==o2.num?o1.s.compareTo(o2.s):o2.num-o1.num);
return nodes[0].s;
}
public static void main(String[] args) throws Exception {
System.setOut(new PrintStream("output.txt"));
long start=System.currentTimeMillis();
Scanner scanner=new Scanner(System.in);
int times=scanner.nextInt();
for (int t=1;t<=times;t++) {
System.out.println(String.format("Case #%d: %s", t, new Main().solve(scanner)));
}
long end=System.currentTimeMillis();
System.err.println(String.format("Time used: %.3fs", (end-start)/1000.0));
}
}