Submission #65826

#TimeUsernameProblemLanguageResultExecution timeMemory
65826jaehun630Languages (IOI10_languages)C++14
0 / 100
10013 ms4528 KiB
#include <stdlib.h> #include <stdio.h> #include <vector> #include "grader.h" #include "lang.h" #define SZ 100 #define max(a,b) (a>b?a:b) int prev[1100000]; std::vector<int> v[65536]; void excerpt(int *E) { int lang[56]; for (int i = 0; i < 56; i++) lang[i] = 0; for (int i = 0; i < 100; i++) if (v[E[i]].size() > 0) for(int j = 0; j<v[E[i]].size(); j++) lang[v[E[i]].at(j)]++; int idx = 0, cnt = 0; for (int i = 0; i < 56; i++) if (cnt < lang[i]) cnt = lang[i], idx = i; int ans = language(idx); for (int i = 0; i < 100; i++) v[E[i]].push_back(ans); }

Compilation message (stderr)

lang.cpp: In function 'void excerpt(int*)':
lang.cpp:19:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
    for(int j = 0; j<v[E[i]].size(); j++)
                   ~^~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...