Submission #632357

# Submission time Handle Problem Language Result Execution time Memory
632357 2022-08-19T21:45:12 Z ggoh Languages (IOI10_languages) C++14
0 / 100
1642 ms 262144 KB
#include<bits/stdc++.h>
#include "grader.h"
using namespace std;
typedef long long lint;
typedef unsigned long long ulint;
int V[56][65536];
map<lint,int>Y[56];
void excerpt(int *E)
{
  int l=0,maxi=-1;
  vector<lint>P;
  for(int k=0;k<10;k++)
  {
    for(int i=0;i+k<100;i++)
    {
      lint h=0;
      for(int j=0;j<=k;j++)
      {
        h=h*65537+E[i+j];
      }
      P.push_back(h);
    }
  }
  sort(P.begin(),P.end());
  P.erase(unique(P.begin(),P.end()),P.end());
  for(int j=0;j<56;j++)
  {
    int kind=0;
    for(auto &i:P)
    {
      if(Y[j][i])kind++;
    }
    if(kind>maxi)
    {
      maxi=kind;
      l=j;
    }
  }

  int L=language(l);
  for(int k=0;k<10;k++)
  {
    for(int i=0;i+k<100;i++)
    {
      lint h=0;
      for(int j=0;j<=k;j++)
      {
        h=h*65537+E[i+j];
      }
      Y[L][h]++;
    }
  }
}
# Verdict Execution time Memory Grader output
1 Runtime error 1591 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1642 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -