제출 #420982

#제출 시각아이디문제언어결과실행 시간메모리
420982marcipan5000친구 (IOI14_friend)C++14
컴파일 에러
0 ms0 KiB
for (int i=1;i<n;i++) { if (protocol[i]==0) { t[i].push_back(host[i]); t[host[i]].push_back(i); } if (protocol[i]==1) { uu=t[host[i]].size(); for (int j=0;j<uu;j++) { t[i].push_back(t[host[i]][j]); t[t[host[i]][j]].push_back(i); } } if (protocol[i]==2) { uu=t[host[i]].size(); for (int j=0;j<uu;j++) { t[i].push_back(t[host[i]][j]); t[t[host[i]][j]].push_back(i); } t[i].push_back(host[i]); t[host[i]].push_back(i); }

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

friend.cpp:1:1: error: expected unqualified-id before 'for'
    1 | for (int i=1;i<n;i++) {
      | ^~~
friend.cpp:1:14: error: 'i' does not name a type
    1 | for (int i=1;i<n;i++) {
      |              ^
friend.cpp:1:18: error: 'i' does not name a type
    1 | for (int i=1;i<n;i++) {
      |                  ^