MYF

HDU 5776 sum

题目链接

HDU 5776

题目类型:机智题

题目来源:BestCoder #85

题目分析

题目大意

给出n个数字,问是否存在一段连续子序列,使子序列之和为m的倍数

解析

只需要记录前i个数之和的模,如果模为零则直接找到子序列,如果不为零当这个模出现第二次时则可以找到子序列段,毕竟前面的余数能和当前位置的余数相同,那这两个点之间的所有数之和即为m的倍数。

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include <set>
#include <map>
#include <stack>
#include <cmath>
#include <queue>
#include <cstdio>
#include <string>
#include <vector>
#include <iomanip>
#include <bitset>
#include <cstring>
#include <iostream>
#include <deque>
#include <algorithm>
#define Memset(a,val) memset(a,val,sizeof(a))
#define PI acos(-1)
#define PB push_back
#define MP make_pair
#define rt(n) (i == n ? '\n' : ' ')
#define hi printf("Hi----------\n")
#define IN freopen("input.txt","r",stdin);
#define OUT freopen("output.txt","w",stdout);
#define debug(x) cout<<"Debug : ---"<<x<<"---"<<endl;
#pragma comment(linker, "/STACK:1024000000,1024000000")
using namespace std;
typedef pair<int,int> PII;
typedef long long ll;
const int maxn=100000+5;
const int mod=1000000007;
const int INF=0x3f3f3f3f;
const double eps=1e-8;
int a[100000+10],vis[maxn];
int main(){
int T,n,m;
scanf("%d",&T);
while (T--) {
int sum=0;
bool flag=false;
Memset(vis, 0);
scanf("%d%d",&n,&m);
for (int i=1; i<=n; i++) {
scanf("%d",&a[i]);
sum+=a[i];
int tmp = sum%m;
if (vis[tmp]||tmp==0)
flag=true;
else
vis[tmp]=1;
}
if (flag) {
printf("YES\n");
}
else
printf("NO\n");
}
}