제출 #436635

#제출 시각아이디문제언어결과실행 시간메모리
436635mnair797Carnival (CEOI14_carnival)Java
100 / 100
429 ms13832 KiB
import java.io.*;
import java.util.*;
 
public class carnival {
 
    public static void main(String[] args) throws IOException {
    	
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
 
        int N = Integer.parseInt(reader.readLine()); 
 
        int[] groups = new int[N + 1];
        groups[1] = 1;
 
        int groupCount = 1;
        int[] groupMainPoint = new int[N + 1];
 
        groupMainPoint[groupCount] = 1;
 
        String startQuery = "1";
        int prev = 1;
 
        for(int i = 2; i <= N; i++){
            startQuery += " " + String.valueOf(i);
            System.out.println(i + " " + startQuery);
            System.out.flush();
 
            int newGroups = Integer.parseInt(reader.readLine());
            if(newGroups != prev){
                groupCount++;
                groups[i] = groupCount;
                groupMainPoint[groupCount] = i;
            } else {
                int a = 1;
                int b = groupCount;
                while(a != b){
                    int mid = (a + b) / 2;
                    String query = "";
                    for (int j = a; j <= mid; j++){
                        query += " " + String.valueOf(groupMainPoint[j]);
                    }
                    query += " " + i;
                    System.out.println(String.valueOf(mid - a + 2) + query);
                    System.out.flush();
 
                    int currGroupCount = Integer.parseInt(reader.readLine());
                    if(currGroupCount == (mid - a + 2)){
                        a = mid + 1;
                    } else {
                        b = mid;
                    }
                }
 
                groups[i] = a;
            }
 
            prev = newGroups;
        }
        
        String ans = "0";
        for(int i = 1; i <= N; i++){
            ans += " " + String.valueOf(groups[i]);
        }
        System.out.println(ans);
        System.out.flush();
        return;
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...