-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXoria.java
More file actions
46 lines (36 loc) · 1.04 KB
/
Xoria.java
File metadata and controls
46 lines (36 loc) · 1.04 KB
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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package xoria;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
/**
*
* @author evi
*/
public class Xoria {
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws FileNotFoundException {
// TODO code application logic here
File infile = new File("C:/pdp_2017/princ_comp/05.in");
Scanner scnr = new Scanner(infile);
int n;
int m;
int k;
n = scnr.nextInt();
m = scnr.nextInt();
k = scnr.nextInt();
int[][] akmes = new int[m][2];
for (int i=0; i<m; i++) {
akmes[i][0]=scnr.nextInt();
akmes[i][1]=scnr.nextInt();
}
int res = sinistoses.countComponents(n, m, k, akmes);
System.out.println(res);
}
}