zoukankan      html  css  js  c++  java
  • USACO 1.3 Wormholes

    Wormholes

    Farmer John's hobby of conducting high-energy physics experiments on weekends has backfired, causing N wormholes (2 <= N <= 12, N even) to materialize on his farm, each located at a distinct point on the 2D map of his farm (the x,y coordinates are both integers).

    According to his calculations, Farmer John knows that his wormholes will form N/2 connected pairs. For example, if wormholes A and B are connected as a pair, then any object entering wormhole A will exit wormhole B moving in the same direction, and any object entering wormhole B will similarly exit from wormhole A moving in the same direction. This can have rather unpleasant consequences.

    For example, suppose there are two paired wormholes A at (1,1) and B at (3,1), and that Bessie the cow starts from position (2,1) moving in the +x direction. Bessie will enter wormhole B [at (3,1)], exit from A [at (1,1)], then enter B again, and so on, getting trapped in an infinite cycle!

       | . . . .
       | A > B .      Bessie will travel to B then
       + . . . .      A then across to B again
    

    Farmer John knows the exact location of each wormhole on his farm. He knows that Bessie the cow always walks in the +x direction, although he does not remember where Bessie is currently located.

    Please help Farmer John count the number of distinct pairings of the wormholes such that Bessie could possibly get trapped in an infinite cycle if she starts from an unlucky position. FJ doesn't know which wormhole pairs with any other wormhole, so find all the possibilities.

    PROGRAM NAME: wormhole

    INPUT FORMAT:

    Line 1: The number of wormholes, N.
    Lines 2..1+N: Each line contains two space-separated integers describing the (x,y) coordinates of a single wormhole. Each coordinate is in the range 0..1,000,000,000.

    SAMPLE INPUT (file wormhole.in):

    4
    0 0
    1 0
    1 1
    0 1
    

    INPUT DETAILS:

    There are 4 wormholes, forming the corners of a square.

    OUTPUT FORMAT:

    Line 1: The number of distinct pairings of wormholes such that Bessie could conceivably get stuck in a cycle walking from some starting point in the +x direction.

    SAMPLE OUTPUT (file wormhole.out):

    2
    

    OUTPUT DETAILS:

    If we number the wormholes 1..4 as we read them from the input, then if wormhole 1 pairs with wormhole 2 and wormhole 3 pairs with wormhole 4, Bessie can get stuck if she starts anywhere between (0,0) and (1,0) or between (0,1) and (1,1).

       | . . . .
       4 3 . . .      Bessie will travel to B then
       1-2-.-.-.      A then across to B again
    

    Similarly, with the same starting points, Bessie can get stuck in a cycle if the pairings are 1-3 and 2-4 (if Bessie enters WH#3 and comes out at WH#1, she then walks to WH#2 which transports here to WH#4 which directs her towards WH#3 again for a cycle).

    Only the pairings 1-4 and 2-3 allow Bessie to walk in the +x direction from any point in the 2D plane with no danger of cycling. 

    ————————————————————————————题解

    为了提醒一下自己错了那么傻【哔——】的一个错误

    题目大意是一个奇怪的农夫炸出了许多黑洞【他怎么办到的……】黑洞两两联通,假如1,2黑洞是一对,从1黑洞进去会从2黑洞出来,从2黑洞进去会从1黑洞出来,然后他蠢得要死的奶牛不会躲,而且傻乎乎地往x正半轴的方向走,他的奶牛可能进入死循环,然后就gg了……然后这个炸出黑洞的人并不知道哪两个黑洞联通,我们要计算这些黑洞会在任意一点出现死循环的配对数

    我们离散化一下,然后暴力搭配,然后在任意一个黑洞模拟走路就可以了,就是最后一个模拟没写好,挂了三次……

     1 /*
     2 PROB: wormhole
     3 LANG: C++
     4 ID: jiaqi si
     5 */
     6 #include <iostream>
     7 #include <string.h>
     8 #include <cstdlib>
     9 #include <cstdio>
    10 #include <cmath>
    11 #include <algorithm>
    12 #include <cstring>
    13 #include <vector>
    14 #define ivory
    15 #define mo  1000000007 
    16 #define siji(i,x,y) for(int i=(x);i<=(y);i++)
    17 #define gongzi(j,x,y) for(int j=(x);j>=(y);j--)
    18 #define xiaosiji(i,x,y) for(int i=(x);i<(y);i++)
    19 #define sigongzi(j,x,y) for(int j=(x);j>(y);j--)
    20 #define pii pair<int,int>
    21 #define fi first
    22 #define se second
    23 #define mo 1000000007
    24 using namespace std;
    25 pii a[15];
    26 int n,pline[15];
    27 int paring[15],now;
    28 bool use[15];
    29 vector<int> v[15];
    30 int ans;
    31 bool check(int k,int prev) {
    32     if(prev!=paring[k]) { return check(paring[k],k);}
    33     //只要它过黑洞的时候不走回去就行,之前打了标记,然而有些时候黑洞可以走两次
    34     else {
    35         int s=v[pline[k]].size();
    36         xiaosiji(i,0,s) {
    37             if(a[v[pline[k]][i]].fi==a[k].fi) {
    38                 if(i==s-1) return true;
    39                 if(v[pline[k]][i+1]==now) return false;
    40                 return check(v[pline[k]][i+1],k);
    41                 break;
    42             }
    43         }
    44     }
    45     return true;
    46 }
    47 void calculate() {
    48     siji(i,1,n) {
    49         now=i;
    50         if(!check(i,0)) {++ans;return;}
    51     }
    52     
    53 }
    54 void dfs(int u,int t) {
    55     if(t==n-2) {
    56         siji(i,1,n) if(!use[i]) {paring[u]=i;paring[i]=u;} 
    57         calculate();return;
    58     }
    59     use[u]=1;
    60     siji(i,1,n) {
    61         if(!use[i]) {
    62             use[i]=1;paring[i]=u;paring[u]=i;
    63             siji(j,1,n) {
    64                 if(!use[j]) {dfs(j,t+2);break;}
    65             }
    66             use[i]=0;
    67         }
    68     }
    69     use[u]=0;
    70 }
    71 int main()
    72 {
    73 #ifdef ivory
    74     freopen("wormhole.in","r",stdin);
    75     freopen("wormhole.out","w",stdout);
    76 #else 
    77     freopen("f1.in","r",stdin);
    78 #endif
    79     scanf("%d",&n);
    80     siji(i,1,n) {
    81         scanf("%d%d",&a[i].fi,&a[i].se);
    82         swap(a[i].fi,a[i].se);
    83     }
    84     sort(a+1,a+n+1);
    85     int it=a[1].fi,cnt=0;
    86     siji(i,1,n) {
    87         if(a[i].fi==it) {v[cnt].push_back(i);pline[i]=cnt;}
    88         else {it=a[i].fi;++cnt;v[cnt].push_back(i);pline[i]=cnt;}
    89         swap(a[i].fi,a[i].se);
    90     }
    91     dfs(1,0);
    92     printf("%d
    ",ans);
    93     return 0;
    94 }
  • 相关阅读:
    python的paramiko模块简单应用
    python单线程下实现多个socket并发
    python之协程
    python之生产者消费者模型
    python进程之间修改数据[Manager]与进程池[Pool]
    python的进程间的数据交互
    vmware搭建vSAN提示磁盘不合格或者看不到磁盘的解决办法
    python之多并发socket
    OOP的几个不常用的方法
    HTTP 头和 PHP header() 函数
  • 原文地址:https://www.cnblogs.com/ivorysi/p/5815463.html
Copyright © 2011-2022 走看看