首页 > 其他 > 详细

18.06.30 POJ 百练1745:Divisibility

时间:2018-06-30 15:19:15      阅读:153      评论:0      收藏:0      [点我收藏+]

描述

Consider an arbitrary sequence of integers. One can place + or - operators between integers in the sequence, thus deriving different arithmetical expressions that evaluate to different values. Let us, for example, take the sequence: 17, 5, -21, 15. There are eight possible expressions: 17 + 5 + -21 + 15 = 16 
17 + 5 + -21 - 15 = -14 
17 + 5 - -21 + 15 = 58 
17 + 5 - -21 - 15 = 28 
17 - 5 + -21 + 15 = 6 
17 - 5 + -21 - 15 = -24 
17 - 5 - -21 + 15 = 48 
17 - 5 - -21 - 15 = 18 
We call the sequence of integers divisible by K if + or - operators can be placed between integers in the sequence in such way that resulting value is divisible by K. In the above example, the sequence is divisible by 7 (17+5+-21-15=-14) but is not divisible by 5. 

You are to write a program that will determine divisibility of sequence of integers. 
输入

The first line of the input file contains two integers, N and K (1 <= N <= 10000, 2 <= K <= 100) separated by a space. 
The second line contains a sequence of N integers separated by spaces. Each integer is not greater than 10000 by it‘s absolute value. 
输出

Write to the output file the word "Divisible" if given sequence of integers is divisible by K or "Not divisible" if it‘s not.

样例输入

4 7
17 5 -21 15

样例输出

Divisible

来源

Northeastern Europe 1999

技术分享图片
 1 #include <cstdio>
 2 #include <cstring>
 3 #include <memory.h>
 4 #include <algorithm>
 5 #include <stdlib.h>
 6 #include <math.h>
 7 #include <iostream>
 8 #include<queue>
 9 #include <vector>
10 #include <bitset>
11 using namespace std;
12 
13 int dp[2][105];
14 int n, k;
15 int num[10005];
16 
17 void solve() {
18     dp[1][num[1]] = 1;
19     for (int i = 2; i <= n; i++)
20     {
21         for (int j = 0; j < k; j++)dp[i % 2][j] = 0;
22         for (int j = 0; j < k; j++)
23             if (dp[(i - 1) % 2][j])
24             {
25                 dp[i % 2][(num[i] + j) % k] = 1;
26                 dp[i % 2][(k+j - num[i]) % k] = 1;
27             }
28     }
29     if (dp[n%2][0])
30         printf("Divisible\n");
31     else
32         printf("Not divisible\n");
33 }
34 
35 int main()
36 {
37     scanf("%d%d", &n, &k);
38     for (int i = 1; i <= n; i++)
39     {
40         scanf("%d", &num[i]);
41         num[i] = abs(num[i]) % k;
42     }
43     memset(dp, 0, sizeof(dp));
44     solve();
45     return 0;
46 }
View Code

想用滚动数组结果忘了每次初始化,debug很久

18.06.30 POJ 百练1745:Divisibility

原文:https://www.cnblogs.com/yalphait/p/9247211.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!