URAL - 1949 The Best Picture in the Galaxy

16 篇文章 0 订阅
9 篇文章 0 订阅

传送门:http://acm.timus.ru/problem.aspx?space=1&num=1949
题意 : k 个学生去看n个电影,每个电影有自己的开始时间,结束时间和女演员数目,并且,要保证一个学生同时不能看两场电影,其次,学生看的第i+1个电影的女演员数目要不小于他看的第i的电影的女演员数。
求看最多的电影数目时,看了那几部,没看哪几部,1 表示看过0表示没看过

思路:二分图,但是要动态的去建图, 边建图,边检查,
当向图中加入一个新节点时候,我们要考虑以下几种情况:
1.这部电影是否能被当前已经看完电影的同学接着看(二分图匹配,看一下电影和之前电影之间能否构成连通分量)如果可以继续加点
2.这部电影被孤立,那么我们就要看下可否有没在看电影的学生,如果有,就让他看这部电影,然后继续加点
3.如果上述两种情况都不成立,那么这部电影舍去,不看

#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <vector>

using namespace std;
#define MAXN 105
#define inf 0x3f3f3f3f

int lef[MAXN];
bool del[MAXN];
bool con[MAXN];
vector<int> G[MAXN];

bool match(int x){
    for( int i = 0; i < G[x].size(); i++){
        int v = G[x][i];
        if(del[v]) continue;
        if(!con[v]){
            con[v] = true;
            if(lef[v] == -1 || match(lef[v])){
                lef[v] = x;
                return true;
            }
        }
    }
    return false;
}

int n, k, a[MAXN], b[MAXN], c[MAXN];

int solve(){
    memset(lef, -1, sizeof(lef));
    int ans = 0;
    for(int i = 1; i <= n; i++){
        if(del[i]) continue;
        memset(con, 0, sizeof(con));
        if(match(i)) ans++;
    }
    return ans;
}

bool ok(int x, int y){
    return(b[x] <= a[y] && c[x] <= c[y]);
}

int main(){
    while(scanf("%d %d",&n, &k) != EOF){
        memset(del, false, sizeof(del));
        int delnum = 0;
        for( int i = 1; i <= n; i++){
        G[i].clear();
        scanf("%d %d %d",&a[i], &b[i], &c[i]);
       }
        for( int i = 1; i <= n; i++ ){
            for( int j = 1; j < i; j++ ){
                if(ok(i, j))
                     G[i].push_back(j);
                if(ok(j, i))
                     G[j].push_back(i);
            }

            int yes = 1;
            int tep = solve();
            tep = i - delnum - tep;
            if(tep > k){
                del[i] = true;
                delnum ++;
                yes = 0;
            }
            printf("%d",yes);
        }
        puts("");
    }


    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
用代码解决这个问题The program committee of the school programming contests, which are often held at the Ural State University, is a big, joyful, and united team. In fact, they are so united that the time spent together at the university is not enough for them, so they often visit each other at their homes. In addition, they are quite athletic and like walking. Once the guardian of the traditions of the sports programming at the Ural State University decided that the members of the program committee spent too much time walking from home to home. They could have spent that time inventing and preparing new problems instead. To prove that, he wanted to calculate the average distance that the members of the program committee walked when they visited each other. The guardian took a map of Yekaterinburg, marked the houses of all the members of the program committee there, and wrote down their coordinates. However, there were so many coordinates that he wasn't able to solve that problem and asked for your help. The city of Yekaterinburg is a rectangle with the sides parallel to the coordinate axes. All the streets stretch from east to west or from north to south through the whole city, from one end to the other. The house of each member of the program committee is located strictly at the intersection of two orthogonal streets. It is known that all the members of the program committee walk only along the streets, because it is more pleasant to walk on sidewalks than on small courtyard paths. Of course, when walking from one house to another, they always choose the shortest way. All the members of the program committee visit each other equally often. Input The first line contains the number n of members of the program committee (2 ≤ n ≤ 105). The i-th of the following n lines contains space-separated coordinates xi, yi of the house of the i-th member of the program committee (1 ≤ xi, yi ≤ 106). All coordinates are integers. Output Output the average distance, rounded down to an integer, that a member of the program committee walks from his house to the house of his colleague.
最新发布
05-26

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值