제출 #384211

#제출 시각아이디문제언어결과실행 시간메모리
384211kaplanbar무제 (POI11_tem)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; using ll = long long; int main() { ios_base::sync_with_stdio(false); cin.tie(0); int n; cin >> n; vector<pair<ll,ll>> v(n); for(int i = 0; i < n; i++) { cin >> v[i].first >> v[i].second; } int ans = 0; int j = 0; multiset<ll> s; int ans = 0; for(int i = 0; i < n; i++) { j = max(j, i); while(j < n && (s.empty() || v[j].second >= -(*s.begin()))) { s.insert(-v[j].first); j++; } ans = max(ans, j - i); s.erase(s.find(-v[i].first)); } cout << ans; return 0; }

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

tem.cpp: In function 'int main()':
tem.cpp:21:9: error: redeclaration of 'int ans'
   21 |     int ans = 0;
      |         ^~~
tem.cpp:17:9: note: 'int ans' previously declared here
   17 |     int ans = 0;
      |         ^~~