B. Pasha and Phone
Pasha has recently bought a new phone jPager and started adding his friends' phone numbers there. Each phone number consists of exactly n digits.

Also Pasha has a number k and two sequences of length n / k (n is divisible by k) a1, a2, ..., an / k and b1, b2, ..., bn / k. Let's split the phone number into blocks of length k. The first block will be formed by digits from the phone number that are on positions 1, 2,..., k, the second block will be formed by digits from the phone number that are on positions k + 1, k + 2, ..., 2·k and so on. Pasha considers a phone number good, if the i-th block doesn't start from the digit bi and is divisible by ai if represented as an integer.

To represent the block of length k as an integer, let's write it out as a sequence c1, c2,...,ck. Then the integer is calculated as the result of the expression c1·10k - 1 + c2·10k - 2 + ... + ck.

Pasha asks you to calculate the number of good phone numbers of length n, for the given k, ai and bi. As this number can be too big, print it modulo 109 + 7.

Input
The first line of the input contains two integers n and k (1 ≤ n ≤ 100 000, 1 ≤ k ≤ min(n, 9)) — the length of all phone numbers and the length of each block, respectively. It is guaranteed that n is divisible by k.

The second line of the input contains n / k space-separated positive integers — sequence a1, a2, ..., an / k (1 ≤ ai < 10k).

The third line of the input contains n / k space-separated positive integers — sequence b1, b2, ..., bn / k (0 ≤ bi ≤ 9).

Output
Print a single integer — the number of good phone numbers of length n modulo 109 + 7.

Sample test(s)
input
6 2
38 56 49
7 3 4
output
8
input
8 2
1 22 3 44
5 4 3 2
output
32400

Note
In the first test sample good phone numbers are: 000000, 000098, 005600, 005698, 380000, 380098, 385600, 385698.

题意:将一个长度为n的phone number,分成长度为k的n/k给块,如果任意一个块(块i)中的数字x的开头数字不是b[i], 且x可以整除a[i],那么就称这个phone number是 good number。问这样的good number 有多少个!

思路:容斥原理。 块 i : tot = 数字长度为k且可以整除a[i]的个数;

bi_tot = 数字长度为k且开头数字为b[i]且可以整除a[i]的个数 - 数字长度为k且开头数字为(b[i]-1)且可以整除a[i]的个数

那么符合要求的数字个数 = tot - bi_tot;(b[i]>0)

#include<iostream>
#include<cstring>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<cstring>
#define N 1000005
#define MOD 1000000007
using namespace std;
typedef __int64 LL;
int a[N];
int b[N];
int f[];
void init(){
f[] = ;
for(LL i=; i<; ++i)
f[i] = f[i-] * ;
} int main(){
init();
int n, k;
scanf("%d%d", &n, &k);
int m = n/k;
for(int i=; i<=m; ++i)
scanf("%d", &a[i]);
for(int i=; i<=m; ++i)
scanf("%d", &b[i]);
LL ans = ;
for(int i=; i<=m; ++i){
LL tot = (f[k]-)/a[i] + ;
LL bi_tot0 = (f[k-]-)/a[i] + ;//block的开头是0, 即b[i]==0
LL bi_tot = (f[k-]*(b[i]+)-)/a[i] - (f[k-]*b[i]-)/a[i];//block的开头不是0
if(b[i] == )
ans *= tot-bi_tot0;
else
ans *= tot-bi_tot;
ans %= MOD;
}
printf("%I64d\n", ans);
return ;
}
                        C. Duff and Weight Lifting
 

Recently, Duff has been practicing weight lifting. As a hard practice, Malek gave her a task. He gave her a sequence of weights. Weight of i-th of them is 2^wi pounds. In each step, Duff can lift some of the remaining weights and throw them away. She does this until there's no more weight left. Malek asked her to minimize the number of steps.

Duff is a competitive programming fan. That's why in each step, she can only lift and throw away a sequence of weights 2^a1, ..., 2^ak if and only if there exists a non-negative integer x such that 2^a1 + 2^a2 + ... + 2^ak = 2^x, i. e. the sum of those numbers is a power of two.

Duff is a competitive programming fan, but not a programmer. That's why she asked for your help. Help her minimize the number of steps.

Input

The first line of input contains integer n (1 ≤ n ≤ 106), the number of weights.

The second line contains n integers w1, ..., wn separated by spaces (0 ≤ wi ≤ 106 for each 1 ≤ i ≤ n), the powers of two forming the weights values.

Output

Print the minimum number of steps in a single line.

Sample test(s)
input
5
1 1 2 3 3
output
2
input
4
0 1 2 3
output
4
Note

In the first sample case: One optimal way would be to throw away the first three in the first step and the rest in the second step. Also, it's not possible to do it in one step because their sum is not a power of two.

In the second sample case: The only optimal way is to throw away one weight in each step. It's not possible to do it in less than 4 steps because there's no subset of weights with more than one weight and sum equal to a power of two.

题意:给定n个数w1, w2, w3,.......wn, 然后从这个n数中找出这样的一个子序列a1,a2,a3....ak 使得 2^a1+2^a2.....+2^ak = 2^x, 然后可以删除这个序列,

那么最少经过几步可以全部将这n个数删除!

思路:其实就是 二进制数 相加的过程,n个数对应n个二进制数,从最低位到最高位相加,得到最后的二进制数中 1 的个数就是答案!

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<map>
using namespace std;
map<int, int, less<int> >mp;
int main(){
int n;
scanf("%d", &n);
while(n--){
int x;
scanf("%d", &x);
mp[x]++;
}
int ans = ;
for(map<int,int>::iterator it = mp.begin(); it!=mp.end(); ++it){
if(it->second>)
mp[it->first + ] += it->second / ;
if(it->second% != ) ++ans;
}
printf("%d\n", ans);
return ;
}

最新文章

  1. 使用开源DocX 生成Word
  2. Linux 搭建Nexus
  3. Runner站立会议07
  4. DS_Store 是什么文件
  5. 转载: pyExcelerator(Python操作Excel内库)API 文档
  6. Linux的启动流程
  7. C#按键打开文件选择对话框,并把选择好的路径保存/显示到textBox
  8. 利用UICollectionView实现瀑布流
  9. Python判断文件是否存在的三种方法
  10. C#之可选参数和命名参数
  11. ubuntu12.04:jdk7:手动安装
  12. Asp.Net Core WebAPI使用Swagger时API隐藏与分组
  13. 同一台电脑中同时安装oracle database 服务器端和oracle client 客户端时注意
  14. canvas-0scale.html
  15. JavaScript对象简介(一)
  16. 有关 PHP 的 10 道问题
  17. Dom,pull,Sax解析XML
  18. python中列表的常用操作增删改查
  19. 用NPOI创建Excel、合并单元格、设置单元格样式、边框的方法
  20. AJPFX的资金安全性

热门文章

  1. 基础1.初次接触Jquery
  2. MongoDB常用命令
  3. 2.5美元每月的VPS, host1plus
  4. About kaychen
  5. [LintCode] Find Peak Element 求数组的峰值
  6. HTTP协议详解(转)
  7. 【LabVIEW技巧】路径依赖解除方法
  8. 安装使用Oracle OSWbb/OSWbba工具
  9. TP5验证规则使用
  10. iOS程序模块化设计