Codeforces-868B ,C 模拟,思维。。

参考:http://blog.csdn.net/Little_boy_z/article/details/78162622

题解:

还比较有意思的一题,就是给出时分秒,给出人要走的两个时间点(任何一个都可以作为起点和终点,可以顺时针也可以逆时针),问是否可以顺利走完(不碰到时分秒的针)
#include <stdio.h>
#include <iostream>
#include <algorithm>
#include <string.h>
#include <queue>
#include <vector>
using namespace std;
int a,b,c,d,e;
int f[100];
int main()
{
    scanf("%d%d%d%d%d",&a,&b,&c,&d,&e);
    a*=5,d*=5,e*=5;
    a%=60;
    d%=60;
    e%=60;
    f[a]++;
    f[b]++;
    f[c]++;
    if(d>e) swap(d,e);
    int ans=0;
    for(int i=d;i<e;i++)ans+=f[i];
    if(ans%3==0)puts("YES");
    else puts("NO");
return 0;
}

参考:http://blog.csdn.net/overload1997/article/details/78162872

题意:有n道题目,k个参加队伍,对于每个题目参加的队伍可能知道这个题目也可能不知道这个题目,你想要找到一个关于这n道题的非空子集,每个参加队伍知道的题目不超过总数的一半。问是否能找到这么个子集。

思路:这题还挺有意思的,首先你会先到如果存在一道题是全部队伍都不知道,那么答案肯定是yes,否则不存在选一道题的情况,然后如果选两道题,那么答案为yes的最坏的情况就是每个队伍都知道一道题,然后你会发现如果两道题解决不了的话三道题四道题也同样解决不了,所以最坏的就是选两道题,所以每次判一下两道题能不能满足条件就好了。下面给代
#include<set>
#include<map>
#include<ctime>
#include<cmath>
#include<stack>
#include<queue>
#include<cstdio>
#include<string>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<functional>
typedef long long LL;
using namespace std;
#define inf 0x3f3f3f3f
#define maxn 20
typedef long long LL;
int vis[maxn];
int main(){
    int n, k;
    scanf("%d%d", &n, &k);
    bool jud = false;
    while (n--){
        int status = 0;
        for (int i = 0; i < k; i++){
            int x;
            scanf("%d", &x);
            if (x)
                status |= 1 << i;
        }
        vis[status] = 1;
        for (int i = 0; i < (1 << k); i++){
            if (status&i)
                continue;
            if (vis[i])
                jud = true;
        }
    }
    if (jud)
        puts("YES");
    else
        puts("NO");
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值