제출 #638629

#제출 시각아이디문제언어결과실행 시간메모리
638629browntoadLet's Win the Election (JOI22_ho_t3)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> #pragma GCC optimize ("Ofast", "unroll-loops") using namespace std; #define ll long long #define int ll #define FOR(i,a,b) for (int i = (a); i<(b); i++) #define REP(i,n) FOR(i,0,n) #define REP1(i,n) FOR(i,1,n+1) #define RREP(i,n) for (int i=(n)-1; i>=0; i--) #define f first #define s second #define pb push_back #define ALL(x) x.begin(),x.end() #define SZ(x) (int)(x.size()) #define SQ(x) (x)*(x) #define pii pair<int, int> #define pdd pair<double ,double> #define pcc pair<char, char> #define endl '\n' //#define TOAD #ifdef TOAD #define bug(x) cerr<<__LINE__<<": "<<#x<<" is "<<x<<endl #define IOS() #else #define bug(...) #define IOS() ios::sync_with_stdio(0), cin.tie(0), cout.tie(0) #endif const ll inf = 1ll<<60; const int iinf=2147483647; const ll mod = 1e9+7; const ll maxn=505; const double PI=acos(-1); ll pw(ll x, ll p, ll m=mod){ ll ret=1; while (p>0){ if (p&1){ ret*=x; ret%=m; } x*=x; x%=m; p>>=1; } return ret; } ll inv(ll a, ll m=mod){ return pw(a,m-2); } //======================================================================================= int n, k; vector<pii> vc; bool cmp(pii a, pii b){ if (a.s==-1&&b.s==-1){ return a.f<b.f; } if (a.s==-1||b.s==-1){ return a.s>b.s; } return a.s<b.s; } double dp[maxn][maxn], sf[maxn][maxn]; signed main (){ IOS(); cout<<fixed<<setprecision(15); cin>>n>>k; REP(i, n){ int x, y; cin>>x>>y; vc.pb({x, y}); } sort(ALL(vc), cmp); REP(i, maxn){ REP(j, maxn){ if (j==0) sf[i][j]=0; else sf[i][j]=inf; } } RREP(i, n){ vector<int> cur; FOR(j, i, n){ cur.pb(vc[j].f); } sort(ALL(cur)); REP1(j, k){ if (j>SZ(cur)) break; else sf[i][j]=sf[i][j-1]+cur[j-1]; } } long double res=sf[0][k]; REP1(t, k){ REP(i, n){ REP(j, t+1){ dp[i][j]=inf; } } REP(i, n){ if (i==0){ dp[i][0]=(0.0+vc[i].f)/(t+1); if (vc[i].s!=-1) dp[i][1]=(0.0+vc[i].s); continue; } REP(j, t+1){ if (j>i+1) break; if (j==0){ dp[i][0]=dp[i-1][0]+(0.0+vc[i].f)/(t+1); } else dp[i][j]=min(dp[i-1][j]+(0.0+vc[i].f)/(t+1), ((vc[i].s!=-1)?(dp[i-1][j-1]+(0.0+vc[i].s)/(j)):(0.0+inf))); } } REP(i, n){ res=min(res, dp[i][t]+sf[i+1][k-t]/(t+1)); } //res=min(res, dp[t-1][t]+(0.0+sf[t][k-t])/(t+1)); // 0 base } cout<<res<<endl; }

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

Main.cpp: In function 'int main()':
Main.cpp:117:53: error: no matching function for call to 'min(long double&, double)'
  117 |             res=min(res, dp[i][t]+sf[i+1][k-t]/(t+1));
      |                                                     ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
                 from /usr/include/c++/10/ios:40,
                 from /usr/include/c++/10/istream:38,
                 from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from Main.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:230:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::min(const _Tp&, const _Tp&)'
  230 |     min(const _Tp& __a, const _Tp& __b)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:230:5: note:   template argument deduction/substitution failed:
Main.cpp:117:53: note:   deduced conflicting types for parameter 'const _Tp' ('long double' and 'double')
  117 |             res=min(res, dp[i][t]+sf[i+1][k-t]/(t+1));
      |                                                     ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
                 from /usr/include/c++/10/ios:40,
                 from /usr/include/c++/10/istream:38,
                 from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from Main.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:278:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::min(const _Tp&, const _Tp&, _Compare)'
  278 |     min(const _Tp& __a, const _Tp& __b, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:278:5: note:   template argument deduction/substitution failed:
Main.cpp:117:53: note:   deduced conflicting types for parameter 'const _Tp' ('long double' and 'double')
  117 |             res=min(res, dp[i][t]+sf[i+1][k-t]/(t+1));
      |                                                     ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from Main.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:3468:5: note: candidate: 'template<class _Tp> constexpr _Tp std::min(std::initializer_list<_Tp>)'
 3468 |     min(initializer_list<_Tp> __l)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3468:5: note:   template argument deduction/substitution failed:
Main.cpp:117:53: note:   mismatched types 'std::initializer_list<_Tp>' and 'long double'
  117 |             res=min(res, dp[i][t]+sf[i+1][k-t]/(t+1));
      |                                                     ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from Main.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:3474:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::min(std::initializer_list<_Tp>, _Compare)'
 3474 |     min(initializer_list<_Tp> __l, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3474:5: note:   template argument deduction/substitution failed:
Main.cpp:117:53: note:   mismatched types 'std::initializer_list<_Tp>' and 'long double'
  117 |             res=min(res, dp[i][t]+sf[i+1][k-t]/(t+1));
      |                                                     ^