Pagini recente » Profil la_rollercoaster_trebuie_MOD_1000000007 | Cod sursa (job #1407584) | Cod sursa (job #1771043) | Cod sursa (job #1764064) | Cod sursa (job #1356779)
import java.io.*;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
@SuppressWarnings({ "rawtypes", "unchecked" })
public class Main {
static Hashtable hash = new Hashtable();
static int ok = 0;
static Scanner br;
static PrintWriter pw;
public static void main(String[] args) throws IOException {
br = new Scanner(new FileInputStream("convertor.in"));
pw = new PrintWriter("convertor.out");
String s, aux;
int index, index2, current = 0, ok = 0, number;
while (br.hasNext() && ok == 0) {
s = br.nextLine();
String[] t = s.split(",");
for (int i = 0 ; i < t.length ; i++) {
if (t[i].matches(".*[a-zA-Z0-9]+.*")) {
String[] tt = t[i].split(":");
if (tt.length == 1) {
// System.out.println(tt[0] + " " + current + " " + ok);
if (current % 2 == 0) {
index = t[i].indexOf("\"");
index2 = t[i].indexOf("\"", index + 1);
aux = t[i].substring(index + 1, index2);
pw.print(aux + ",");
}
if (tt[0].contains("}")) {
ok = 1;
// pw.println();
break;
}
current++;
}
else {
if (tt[0].matches(".*[a-zA-Z0-9]+.*")) {
// System.out.println(tt[0] + " " + current + " " + ok);
if (current % 2 == 0) {
index = tt[0].indexOf("\"");
index2 = tt[0].indexOf("\"", index + 1);
aux = tt[0].substring(index + 1, index2);
pw.print(aux + ",");
}
current++;
}
if (tt[1].matches(".*[a-zA-Z0-9]+.*")) {
// System.out.println(tt[1] + " " + current + " " + ok);
if (tt[1].contains("}")) {
ok = 1;
// pw.println();
break;
}
current++;
}
}
}
else {
if (ok == 0 && t[i].contains("}")) {
ok = 1;
// pw.println();
break;
}
}
}
}
number = (current + 1) / 2;
current = 0;
// System.out.println(number);
br.close();
br = new Scanner(new FileInputStream("convertor.in"));
while (br.hasNext()) { //it all started with this fucking line
s = br.nextLine();
String[] t = s.split(",");
for (int i = 0 ; i < t.length ; i++) {
if (t[i].matches(".*[a-zA-Z0-9]+.*")) {
String[] tt = t[i].split(":");
if (tt.length == 1) {
System.out.println(tt[0] + " " + current);
if (current % (number * 2) == 0)
pw.println();
if (current % 2 == 1) {
aux = tt[0];
if (tt[0].contains("\"")) {
index = aux.indexOf("\"");
index2 = aux.indexOf("\"", index + 1);
aux = aux.substring(index + 1, index2);
pw.print(aux + ",");
}
else {
Matcher m = Pattern.compile("[^0-9]*([0-9]+).*").matcher(aux);
if (m.matches()) {
aux = aux.trim();
pw.print(aux + ",");
}
}
}
current++;
}
else {
if (tt[0].matches(".*[a-zA-Z0-9]+.*")) {
if (current % (number * 2) == 0)
pw.println();
current++;
}
if (tt[1].matches(".*[a-zA-Z0-9]+.*")) {
System.out.println(tt[1] + " " + current);
if (current % 2 == 1) {
aux = tt[1];
if (tt[1].contains("\"")) {
index = aux.indexOf("\"");
index2 = aux.indexOf("\"", index + 1);
aux = aux.substring(index + 1, index2);
pw.print(aux + ",");
}
else {
Matcher m = Pattern.compile("[^0-9]*([0-9]+).*").matcher(aux);
if (m.matches()) {
aux = aux.trim();
pw.print(aux + ",");
}
}
}
current++;
}
}
}
}
}//finally
br.close();
pw.close();
}
}