제출 #65820

#제출 시각아이디문제언어결과실행 시간메모리
65820jaehun630Languages (IOI10_languages)C++14
0 / 100
10042 ms4468 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 < 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 = 24, 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); }

컴파일 시 표준 에러 (stderr) 메시지

lang.cpp: In function 'void excerpt(int*)':
lang.cpp:17: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...