제출 #23384

#제출 시각아이디문제언어결과실행 시간메모리
23384noobprogrammerGap (APIO16_gap)C++14
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h>
#include "gap.h"
using namespace std;
typedef long long ll;
#define fi first
#define se second
#define ii pair<int,int>
#define vii vector<pair<int,int> >
#define vi vector<int>

ll arr[100010] ;

ll findGap(int t , int n){
	int sz = n ;
	if(t == 1){
		MinMax( 0 , 1e18 , arr + 1 , arr + n ) ;
		sz-=2 ;
		int  i = 1 ;
		while(sz > 0){
			MinMax( arr[i]+1 , arr[n-i+1]-1 , arr + i + 1 , arr + n - i  ) ;
			sz-=2 ;
			i++ ;
		}
		if()
		ll res = 0 ;
		for(int i=1;i<n;i++) res = max(arr[i+1] - arr[i] , res) ;
		return res ;
	}
	else{

	}
	return 0 ;
}

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

gap.cpp: In function 'll findGap(int, int)':
gap.cpp:24:6: error: expected primary-expression before ')' token
   if()
      ^
gap.cpp:25:6: warning: unused variable 'res' [-Wunused-variable]
   ll res = 0 ;
      ^
gap.cpp:26:24: error: 'res' was not declared in this scope
   for(int i=1;i<n;i++) res = max(arr[i+1] - arr[i] , res) ;
                        ^
gap.cpp:27:10: error: 'res' was not declared in this scope
   return res ;
          ^