답안 #1080809

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1080809 2024-08-29T14:30:08 Z PenguinsAreCute Languages (IOI10_languages) C++17
87 / 100
887 ms 15808 KB
#include "grader.h"
#include <bits/stdc++.h>
using namespace std;
using ld = long double;
#define all(v) begin(v),end(v)
mt19937 rng(1210);
int freq[60][1<<16];
int cnt = 0;
void excerpt(int *E) {
	if(!cnt) {
		cnt = 1;
		for(int i=0;i<60;i++) fill(freq[i]+1,freq[i]+(1<<16),1), freq[i][0]=420;
	}
	pair<ld,int> bst={-1e9,0};
	for(int i=0;i<56;i++) {
		ld prob = 0;
		for(int j=0;j<100;j++) prob += log(freq[i][E[j]])-log(freq[i][0]);
		bst=max(bst,{prob,i});
	}
	int lang = language(bst.second);
	for(int i=0;i<100;i++) freq[lang][E[i]]++;
	freq[lang][0]+=100;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 887 ms 15808 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Partially correct 863 ms 15704 KB Output is partially correct - 79.62%