답안 #155307

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
155307 2019-09-27T13:57:41 Z jhnah917 Languages (IOI10_languages) C++14
56 / 100
459 ms 2980 KB
#include "grader.h"
#include "lang.h"
#include <bits/stdc++.h>
using namespace std;

int n = 100, m = 56;
int cnt[66][101010];

void excerpt(int *arr){
	int mx = 0, idx = 0;
	for(int i=0; i<m; i++){
		int now = 0;
		for(int j=0; j<n; j++) if(cnt[i][arr[j]]) now++;
		if(now > mx){
			mx = now; idx = i;
		}
	}
	
	int ans = language(idx);
	for(int i=0; i<n; i++) cnt[ans][arr[i]] = 1;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 329 ms 2888 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Partially correct 459 ms 2980 KB Output is partially correct - 52.92%