Submission #61238

# Submission time Handle Problem Language Result Execution time Memory
61238 2018-07-25T12:18:07 Z reality Languages (IOI10_languages) C++17
98 / 100
8221 ms 68628 KB
#include "grader.h"
#include "lang.h"
#include "bits/stdc++.h"
using namespace std;
#define fi first
#define se second
#define ll long long
#define dbg(v) cerr<<#v<<" = "<<v<<'\n'
#define vi vector<int>
#define vl vector <ll>
#define pii pair<int,int>
#define mp make_pair
#define db long double
#define pb push_back
#define all(s) s.begin(),s.end()
template < class T > T smin(T &a,T b) {if (a > b) a = b;return a;}
template < class T > T smax(T &a,T b) {if (a < b) a = b;return a;}
 
#define U unsigned ll
 
#define SZ 100
 
const int K = 6;
 
map < U , U > T;
 
vector < db > C;
 
ll f(auto x) {
	return C[0] + x * C[1] + x * x * C[2];
}
 
int called = 0;
 
void excerpt(int *E) {
	++called;
	if (called == 1) {
		srand(E[0] * E[1]);
		C.pb(rand() % 16);
		C.pb(rand() % 8);
		C.pb(rand() % 4);
	}
	int n = SZ;
	vector < U > M;
	for (int i = 0;i < n;++i) {
		U cnt = 1;
		int lm = i + K;
		for (int j = i;j < n && j < lm;++j)
			if (1) {//!('0' <= E[j] && E[j] <= '9') && !(E[j] == '-' || E[j] == '.' || E[j] == '(' || E[j] == ')' || E[j] == ' ' || E[j] == ',' || E[j] == '\"')) {
				cnt *= E[j];
				M.pb(cnt);
			} else {
				break;
			}
	}
	vector < pair < int , U > > ss;
	sort(all(M));
	int szz = M.size();
	for (int i = 0,j;i < szz;i = j) {
		j = i;
		while (j < szz && M[i] == M[j])
			++j;
		ss.pb(mp(j - i,M[i]));
	}
	sort(all(ss));
	vector < ll > sim(56,0);
	for (auto it : ss) {
		ll mask = T[it.se];
		for (int i = 0;i < 56;++i)
			if (!((mask >> i) & 1))
				sim[i] += f(it.fi);
	}
	int ans = min_element(all(sim)) - sim.begin();
	int real_ans = language(ans);
	for (auto it : ss)
		T[it.se] |= 1ll << real_ans;
}
# Verdict Execution time Memory Grader output
1 Correct 8221 ms 68628 KB Output is correct
# Verdict Execution time Memory Grader output
1 Partially correct 7948 ms 68344 KB Output is partially correct - 89.52%