#include <bits/stdc++.h>
using namespace std;
#define int long long
#define str string
#define endl '\n'
#define all(a) a.begin(), a.end()
#define fastio ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
#define print(a) \
for (auto x : a) \
cout << x << ' '; \
cout << endl;
#define printmp(a) \
for (auto x : a) \
cout << x[0] << ' ' << x[1] << endl;
const int mod = 998244353;
void solve(){
int n;
cin >> n;
vector<array<int, 2>> a(n);
int sum = 0;
for(int i = 0; i < n; i ++)
cin >> a[i][0] >> a[i][1], sum += a[i][1];
vector<vector<int>> p(100000);
for(int i = 0; i < n; i ++)
for(int j = 0; j < a[i][0]; j ++)
p[j].push_back(i);
auto get = [&](int x){
vector<array<int, 2>> c = a;
int s = sum;
int ans = 0;
for(int i = 99999; i >= 0; i --){
vector<array<int, 2>> b;
for(auto x : p[i])
if(a[x][1] > 0)
b.push_back({a[x][1], x});
sort(all(b), greater<array<int, 2>>());
for(int j = 0; j < min(x, (int)b.size()); j ++){
ans += j;
s --;
a[b[j][1]][1] --;
}
}
a = c;
if(s == 0)
return ans;
return (int)1e18;
};
int ans = 1e18;
for(int i = 1; i <= n; i ++)
ans = min(ans, get(i));
cout << ans;
}
signed main()
{
fastio;
int t = 1;
// cin >> t;
while (t--)
{
solve();
cout << endl;
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
2648 KB |
Output is correct |
2 |
Correct |
2 ms |
2652 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
2652 KB |
Output is correct |
2 |
Correct |
2 ms |
2652 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
2652 KB |
Output is correct |
2 |
Correct |
1 ms |
2732 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
131 ms |
2908 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1044 ms |
53840 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
57 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
59 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
62 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
77 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
71 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
85 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |