Codeforces Round #295 (Div. 1) B. Cubes (STL+类拓扑)

最近课业繁重,这题写了两天。。昨晚睡觉的时候才突然想到了最后一点的解决方法。

不知道该不该叫做拓扑。。感觉还是挺像的。。就把标题称之为类拓扑了。。这题的方法是用map来标记状态是否存在,然后用类似拓扑的方法不断的找拿走后依然稳定的方块,我用了两个优先队列来维护,分别取最大和最小。然后就是模拟这个过程取方块了。

代码如下:

#include <iostream>
#include <string.h>
#include <math.h>
#include <queue>
#include <algorithm>
#include <stdlib.h>
#include <map>
#include <set>
#include <stdio.h>
using namespace std;
#define LL long long
#define pi acos(-1.0)
const int mod=1e9+9;
const int INF=0x3f3f3f3f;
const double eqs=1e-9;
struct node
{
        int x, y;
}fei[110000];
priority_queue<int,vector<int>,greater<int> >q1;
priority_queue<int,vector<int>,less<int> >q2;
map<pair<int,int>, int> mp;
int vis[110000];
bool check(int x, int y)
{
        if(mp.find(make_pair(x-1,y+1))!=mp.end()){
                if(mp.find(make_pair(x-2,y))==mp.end()&&mp.find(make_pair(x-1,y))==mp.end()) return 0;
        }
        if(mp.find(make_pair(x,y+1))!=mp.end()){
                if(mp.find(make_pair(x-1,y))==mp.end()&&mp.find(make_pair(x+1,y))==mp.end()) return 0;
        }
        if(mp.find(make_pair(x+1,y+1))!=mp.end()){
                if(mp.find(make_pair(x+1,y))==mp.end()&&mp.find(make_pair(x+2,y))==mp.end()) return 0;
        }
        return 1;
}
void topo(int n)
{
        int i, j, k=0, u, x, y, v;
        LL ans=0;
        map<pair<int,int>,int>::iterator it;
        for(it=mp.begin();it!=mp.end();it++){
                if(check(it->first.first,it->first.second)){
                        u=it->second;
                        q1.push(u);q2.push(u);
                }
        }
        while(k<n){
                if((k&1)==0){
                        while(!q2.empty()){
                                u=q2.top();
                                q2.pop();
                                if(!vis[u]&&check(fei[u].x,fei[u].y)){
                                        vis[u]=1;
                                        break;
                                }
                        }
                }
                else{
                        while(!q1.empty()){
                                u=q1.top();
                                q1.pop();
                                if(!vis[u]&&check(fei[u].x,fei[u].y)){
                                        vis[u]=1;
                                        break;
                                }
                        }
                }
                ans=(ans*n%mod+u)%mod;
                mp.erase(make_pair(fei[u].x,fei[u].y));
                //printf("%d\n",u);
                x=fei[u].x-1;y=fei[u].y-1;
                if(mp.find(make_pair(x,y))!=mp.end()){
                        v=mp[make_pair(x,y)];
                        if(!vis[v]&&check(x,y)){
                                q1.push(v);
                                q2.push(v);
                        }
                }
                x=fei[u].x;y=fei[u].y-1;
                if(mp.find(make_pair(x,y))!=mp.end()){
                        v=mp[make_pair(x,y)];
                        if(!vis[v]&&check(x,y)){
                                q1.push(v);
                                q2.push(v);
                        }
                }
                x=fei[u].x+1;y=fei[u].y-1;
                if(mp.find(make_pair(x,y))!=mp.end()){
                        v=mp[make_pair(x,y)];
                        if(!vis[v]&&check(x,y)){
                                q1.push(v);
                                q2.push(v);
                        }
                }
                k++;
        }
        printf("%I64d\n",ans);
}
int main()
{
        int n, i, j, pos, x, y;
        scanf("%d",&n);
        mp.clear();
        memset(vis,0,sizeof(vis));
        for(i=0;i<n;i++){
                scanf("%d%d",&fei[i].x,&fei[i].y);
                mp[make_pair(fei[i].x,fei[i].y)]=i;
        }
        topo(n);
        return 0;
}

时间: 2024-09-30 19:50:38

Codeforces Round #295 (Div. 1) B. Cubes (STL+类拓扑)的相关文章

Codeforces Round #295 Div1 B(Cubes)

Problem Limits TimeLimit(ms):3000 MemoryLimit(MB):256 M∈[1,105] Xi∈[?109,109] Yi∈[0,109] Look up Original Problem From here Solution 一个点可取,当且仅当,把它取了之后,上面的点不会失去平衡而掉下来. 开两个优先队列q1,q2.q1的顶元素最大,q2的顶元素最小,起初把所有可取的点都放入q1,q2,然后,轮流从q1,q2取点,如果访问过了就取下一个,取出点后,判断这

Codeforces Round #295 (Div. 2)

A. Pangram 题意:给出长度为n的字符串,判断26个字母(比如a,A都算作a出现了)是否都在该串中出现了 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include <cmath> 5 #include<algorithm> 6 using namespace std; 7 8 typedef long long LL; 9 10 11 12 int mai

Codeforces Round #295 (Div. 1) C. Pluses everywhere (组合数学+乘法逆元)

这题可以这样想: 对于当前第i位来说,该位若在个位上出现,那么第i位和第i+1位中间肯定有一个"+",剩下的k-1个"+"分布在剩下的n-2个空隙中,所以出现的总次数是C(n-2,k).同理,在十位上出现的总次数是C(n-3,k).于是每个数字的贡献值就可以求出来了,累加即可. 所以大体思路是遍历所有可能出现的位数,从个位开始,分成两部分计算,一部分用前缀和计算出前面所有的在该位上的贡献和,另一部分算出当前位置在该位上的贡献值. 然后对于求组合数,可以先将阶乘预处理

Codeforces Round #295 (Div. 2) A+B+C

A题:找出字符串中是否出现了26个英文字母,不区分大小写 #include <cstdio> #include <cstring> #include <algorithm> using namespace std ; char str[200] ; int a[30] , b[30] ; int main() { int n , i ; scanf("%d", &n) ; scanf("%s", str) ; memset

C. DNA Alignment 数学公式推导 Codeforces Round #295 (Div. 2)

C. DNA Alignment time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Vasya became interested in bioinformatics. He's going to write an article about similar cyclic DNA sequences, so he invente

【记忆化搜索】Codeforces Round #295 (Div. 2) B - Two Buttons

题意:给你一个数字n,有两种操作:减1或乘2,问最多经过几次操作能变成m: 随后发篇随笔普及下memset函数的初始化问题.自己也是涨了好多姿势. 代码 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<cstdlib> 5 #define INF 0x7fffffff; 6 using namespace std; 7 int DP[20100], vis[2010

Codeforces Round #295 (Div. 1)

A 简单题 B 有m个方块 每个方块有一个值 并且是堆起来稳定的 一个方块可以拿掉当且仅当剩下的还是稳定的 双方轮流拿 从左到右放组成一个m进制的数 #include <cstdio> #include <cstring> #include <queue> #include <set> #include <map> #include <algorithm> using namespace std; const __int64 mod

Codeforces Round #295 (Div. 2)——A——Pangram

A word or a sentence in some language is called a pangram if all the characters of the alphabet of this language appear in it at least once. Pangrams are often used to demonstrate fonts in printing or test the output devices. You are given a string c

Codeforces Round #295 (Div. 2)——B——Two Buttons

Vasya has found a strange device. On the front panel of a device there are: a red button, a blue button and a display showing some positive integer. After clicking the red button, device multiplies the displayed number by two. After clicking the blue