http://poj.org/problem?id=3614
こちらの問題を解くにあたり
あるベクトル(cows)に関して二番目の引数でソートすることを考えました
(あっているかは別として).
そして,以下のようなコードを書きました.
しかし,λ関数を用いている箇所で下記のようなエラーが発生してしまいます.
terminal
1$ g++ test.cpp 2test.cpp:32:39: error: expected expression 3 sort(cows.begin(),cows.begin()+c,[](vector<int> &a,vector<int> &b){return 4 ^ 51 error generated.
どのように修正を加えれば良いか教えていただけると幸いです.
c++
1#include <cstdio> 2#include <iostream> 3#include <vector> 4#include <queue> 5#include <map> 6#include <algorithm> 7 8// g++ 9int main(){ 10 int c,l; 11 std::cin >> c >>l; 12 std::vector<std::pair<int, int> > cows(2500); 13 for (int i = 0; i < c; i++) { 14 int a,b; 15 std::cin >> a>> b; 16 cows[i]=std::make_pair(a,b); 17 } 18 19 std::vector<std::pair<int, int> > lotion(2500); 20 for (int i = 0; i < l; i++) { 21 int a,b; 22 std::cin >> a>> b; 23 lotion[i]=std::make_pair(a,b); 24 } 25 26 sort(cows.begin(),cows.begin()+c,[](vector<int> &a,vector<int> &b){return 27 alpha[0] < beta[0]; 28 }); 29 30 sort(lotion.begin(), lotion.begin()+l); 31 32 int ans=0; 33 34 for (int i=0; i<c; i++){ 35 for(int j=0; j<l; j++){ 36 if ((cows[i].first <= lotion[j].first) && (cows[i].second >= lotion[j].first) && (lotion[j].second>0)){ 37 ans+=1; 38 lotion[j].second -=1; 39 break; 40 } 41 } 42 } 43 44 std::cout << ans<< '\n'; 45 46 47 return 0; 48}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。