제출 #741778

#제출 시각아이디문제언어결과실행 시간메모리
741778bane친구 (IOI14_friend)C++17
컴파일 에러
0 ms0 KiB
#include "friend.h" #include<bits/stdc++.h> using namespace std; int findSample(int n, int confidence[], int host[], int protocol[]){ vector <vector <int>> dp(n, vector<int>(2, 0)); for(int i = 0; i < n; i++)dp[i][1] = confidence[i]; for (int i = (n), i >= 1; i-- ) { if (!protocol[i]) { dp[host[i]][0] += max(dp[i][0], dp[i][1]); dp[host[i]][1] += dp[i][0]; } else if (protocol[i] == 1) { dp[host[i]][1] += max(dp[i][0], dp[i][1]); dp[host[i]][1] = max(dp[host[i]][1], dp[host[i]][0] + dp[i][1]); dp[host[i]][0] += dp[i][0]; } else { dp[host[i]][1] += dp[i][0]; dp[host[i]][1] = max(dp[host[i]][1], dp[host[i]][0] + dp[i][1]); dp[host[i]][0] += dp[i][0]; } } return max(dp[0][0], dp[0][1]); }

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

friend.cpp: In function 'int findSample(int, int*, int*, int*)':
friend.cpp:8:21: error: expected ';' before '>=' token
    8 |  for (int i = (n), i >= 1; i-- ) {
      |                     ^~~
      |                     ;
friend.cpp:8:22: error: expected primary-expression before '>=' token
    8 |  for (int i = (n), i >= 1; i-- ) {
      |                      ^~