F. PolandBall and Gifts
 

It's Christmas time! PolandBall and his friends will be giving themselves gifts. There are n Balls overall. Each Ball has someone for whom he should bring a present according to some permutation ppi ≠ i for all i.

Unfortunately, Balls are quite clumsy. We know earlier that exactly k of them will forget to bring their gift. A Ball number i will get his present if the following two constraints will hold:

  1. Ball number i will bring the present he should give.
  2. Ball x such that px = i will bring his present.

What is minimum and maximum possible number of kids who will not get their present if exactly k Balls will forget theirs?

Input

The first line of input contains two integers n and k (2 ≤ n ≤ 106, 0 ≤ k ≤ n), representing the number of Balls and the number of Balls who will forget to bring their presents.

The second line contains the permutation p of integers from 1 to n, where pi is the index of Ball who should get a gift from the i-th Ball. For all ipi ≠ i holds.

Output

You should output two values — minimum and maximum possible number of Balls who will not get their presents, in that order.

Examples
input
5 2
3 4 1 5 2
output
2 4
Note

In the first sample, if the third and the first balls will forget to bring their presents, they will be th only balls not getting a present. Thus the minimum answer is 2. However, if the first ans the second balls will forget to bring their presents, then only the fifth ball will get a present. So, the maximum answer is 4.

 题意:

  n个人,每个人固定给一个人送一个gift,不会给自己送gift,不会有一个人收到两个gift

  也就是说,每个人会收到一个gift和送出去一个gift,这样的人ans+1

  现在你可以指定k个人不会送出去gift

  ans最小和最大是多少

题解:

  划分为多个置换群

  ans最大去贪心就好了

  最小的话: 如果选取置换群大小相加存在等于k的最小就是k,否则是k+1

  利用以上:跑背包,是否能构成K,范围太大,需要二进制优化多重背包优化到n*∑log(b[i]),另外bitset优化

#include<bits/stdc++.h>
using namespace std;
#pragma comment(linker, "/STACK:102400000,102400000")
#define ls i<<1
#define rs ls | 1
#define mid ((ll+rr)>>1)
#define pii pair<int,int>
#define MP make_pair
typedef long long LL;
const long long INF = 1e18+1LL;
const double Pi = acos(-1.0);
const int N = 1e6+, maxn = 1e3+, mod = 1e9+, inf = 2e9; int a[N],b[N],n,k,vis[N],H[N],cnt;
int main() {
scanf("%d%d",&n,&k);
for(int i = ; i <= n; ++i) scanf("%d",&a[i]);
for(int i = ; i <= n; ++i) {
if(vis[i]) continue;
int j = a[i],cnts = ;
while(!vis[j]) {
cnts++;
vis[j] = ;
j = a[j];
}
b[++cnt] = cnts;
}
sort(b+,b+cnt+);
int ans2 = ,kk = k;
for(int i = ; i <= cnt; ++i) {
if(kk >= b[i]/) kk-=b[i]/,ans2 += b[i]/*;
else {
ans2 += *kk;
kk = ;
break;
}
}
ans2 += kk;
ans2 = min(n,ans2);
for(int i = ; i <= cnt; ++i) H[b[i]]++;
bitset<N> dp;
dp.set();
for(int i = ; i <= n; ++i) {
if(H[i] == ) continue;
int t = H[i],l = ;
while(t) {
int w = min(t,l);
t -= w;
dp |= dp<<(w*i);
l <<= ;
}
if(dp[k] == ) {
printf("%d %d\n",k,ans2);
return ;
}
}
printf("%d %d\n",+k,ans2);
return ;
}

最新文章

  1. opencv_判断两张图片是否相同
  2. ToolTipController 事件触发显示时 避免闪烁的处理方法
  3. oracle基础学习
  4. JavaScript功能检测技术和函数构造
  5. VMWare虚拟机网络的三种工作模式
  6. hdu 1085
  7. 【转】C/C++中的日期和时间 TIME_T与STRUCT TM转换&mdash;&mdash;2013-08-25 16
  8. ARP劫持攻击
  9. (转)SQL Server 2008将数据导出为脚本 [SQL Server]
  10. MYSQLI DEMO
  11. 我的Python成长之路---第四天---Python基础(14)---2016年1月23日(寒风刺骨)
  12. lsof基本使用
  13. Nginx支持 React browser router
  14. JIRA 7.8 版本的安装与破解
  15. IntelliJ IDEA spring boot 远程Ddbug调试
  16. MySQL5.7: datetime
  17. 自己写的开源MVC-easyMVC分享
  18. centos7永久更改主机名
  19. R语言(入门小练习篇)
  20. xampp虚拟主机的配置

热门文章

  1. uC/OSii之任务划分
  2. cf837d Round Subset
  3. wps左侧显示目录
  4. 实现List集合中数据逆序排列
  5. zoj 2812
  6. Dream City(线性DP)
  7. 动手实操:如何用 Python 实现人脸识别,证明这个杨幂是那个杨幂?
  8. 【树状数组+dp】HDU 5542 The Battle of Chibi
  9. vue.js基础知识总结
  10. Java面试题总结之Java基础(二)