답안 #270860

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
270860 2020-08-18T03:54:41 Z TMJN Languages (IOI10_languages) C++17
0 / 100
73 ms 5496 KB
#include <bits/stdc++.h>
#include "grader.h"
using namespace std;

map<int,int>mp[55];
int C[55];

void excerpt(int *E) {
	pair<double,int>mx={0,0};
	for(int i=0;i<55;i++){
		if(C[i]==0)continue;
		int c=0;
		for(int j=0;j<100;j++){
			c+=mp[i][E[j]];
		}
		mx=max(mx,{(double)c/C[i],i});
	}
	int l=language(mx.second);
	C[l]++;
	for(int i=0;i<100;i++){
		mp[l][E[i]]++;
	}
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 73 ms 5496 KB Execution killed with signal 11
# 결과 실행 시간 메모리 Grader output
1 Runtime error 69 ms 5368 KB Execution killed with signal 11