제출 #938753

#제출 시각아이디문제언어결과실행 시간메모리
938753vjudge1Toll (BOI17_toll)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> #define int long long #define endl "\n" using namespace std; vector<int>tree; signed main(){ int k,n,m,o; cin>>k>>n>>m>>o; for(int i=0;i<n;i++)tree.push_back(-1); for(int i=0;i<m;i++){ int a,b,t; cin>>a>>b>>t; tree[a]=t; } for(int i=0;i<o;i++){ int a,b; cin>>a>>b; int sum=0; bool flag=false; for(int j=a;j<b;j++){ if(tree[j]==-1){ flag=true; }else{ sum+=tree[j]; } } if(flag==true){ cout<<-1<<endl }else{ cout<<sum<<endl; } } }

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

toll.cpp: In function 'int main()':
toll.cpp:29:9: error: expected ';' before '}' token
   29 |         }else{
      |         ^