# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
530944 | N1NT3NDO | Akcija (COCI21_akcija) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define pb push_back
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
#define sz(x) (int)x.size()
#define fi first
#define sd second
#define all(x) x.begin(), x.end()
//#pragma GCC target ("avx2")
//#pragma GCC optimization ("O3")
//#pragma GCC optimization ("unroll-loops")
using namespace std;
//using namespace __gnu_pbds;
//typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
//#define int long long
const ll inf = (ll)1e15;
const int N = 2000;
ll w[N], dp[N][N][N];
ll n, k, d[N], nom[N];
vector< pair<ll, ll> > ans;
bool cmp(int i, int j)
{
return d[i] < d[j];
}
bool cmp2(pair<ll, ll> a, pair<ll, ll> b)
{
if (a.fi < b.fi) return 0;
else if (a.fi == b.fi && a.sd < b.sd) return 0;
return 1;
}
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> n >> k;
for(int i = 1; i <= n; i++)
{
cin >> w[i] >> d[i];
nom[i] = i;
}
sort(nom + 1, nom + n + 1, cmp);
for(int i = 0; i <= n; i++)
for(int j = 0; j <= n; j++)
for(int c = 0; c <= n; c++)
dp[i][j][c] = inf;
for(int i = 1; i <= n; i++) cout << nom[i] << endl;
cout << endl;
for(int i = 0; i <= n; i++) dp[i][0][0] = 0;
for(int i = 1; i <= n; i++)
{
for(int j = 1; j <= i; j++)
{
for(int time = 0; time <= n; time++)
{
dp[i][j][time] = min(dp[i][j][time], dp[i - 1][j][time]);
if (time < d[nom[i]] && dp[i][j][time + 1] > dp[i - 1][j - 1][time] + w[nom[i]])
{
dp[i][j][time + 1] = dp[i - 1][j - 1][time] + w[nom[i]];
}
}
}
}
for(int i = 0; i <= n; i++)
for(int j = 0; j <= n; j++)
for(int time = 0; time <= n; time++)
{
//cout << j << ' ' << dp[i][j][time] << endl;
if (dp[i][j][time] == inf)
ans.pb({0, 0});
else ans.pb({j, dp[i][j][time]});
}
stable_sort(ans.begin(), ans.end(), cmp2);
for(int i = 0; i < k; i++)
{
cout << ans[i].fi << ' ' << ans[i].sd << '\n';
}
}