#include <stdio.h> #include <stdlib.h> #include <set> #include <map> #include "message.h" #include "kollib.h" int n,m; int node,nodes; int wyn[800*4]={0}; //l,p,dl,dp :/ int wyn_suma; std::set<int> points; std::map<int,int> mpos; int lewo(int i,int p) { int fn=FirstNeighbor(i); return fn!=p?fn:SecondNeighbor(i); } int prawo(int i,int p) { int fn=SecondNeighbor(i); return fn!=p?fn:FirstNeighbor(i); } int test2prawo(int s) { int i=0; int a,p,pp; a=p=pp=s; while(1) { ++i; pp=a; a=prawo(a,p); p=pp; if(points.find(a)!=points.end()) { PutInt(0,i); PutInt(0,a); return 1; } } return 0; } int test2lewo(int s) { int i=0; int a,p,pp; a=p=pp=s; while(1) { ++i; pp=a; a=lewo(a,p); p=pp; if(points.find(a)!=points.end()) { PutInt(0,i); PutInt(0,a); return 1; } } return 0; } int odp_prawo(int i,int p) { int fn=wyn[i*4]; if(fn!=p) { wyn_suma+=wyn[i*4+2]; return fn; } wyn_suma+=wyn[i*4+3]; return wyn[i*4+1]; } int odp(int f,int t) { if(f==t)return 0; wyn_suma=0; int a,p,pp; a=p=pp=f; while(1) { pp=a; a=odp_prawo(a,p); p=pp; if(a==t) { return n-wyn_suma>wyn_suma?wyn_suma:n-wyn_suma; } } return 0; } int main(void) { int i=0,j; int w=0,p,a; int se=0; int ile[100]={0}; int from,to,dis; int fromI,toI; n=NumberOfStudents(); m=NumberOfQueries(); if(m==0)return 0; node=MyNodeId(); nodes=NumberOfNodes(); for(i=0;i<m;++i) { points.insert(QueryFrom(i+1)); points.insert(QueryTo(i+1)); } //troche losowych srand(42); //zycie, wszechswiat i cala reszta :) for(i=0;i<35;++i) { points.insert(1+(rand()%n)); } i=0; for (std::set<int>::iterator it=points.begin(); it!=points.end(); ++it) { ile[(i%nodes)]+=1; if(node==(i%nodes)) { PutInt(0,*it);//skad start test2lewo(*it); test2prawo(*it); ++se; } ++i; } if(se)Send(0); if(!node) { i=0; for (std::set<int>::iterator it=points.begin(); it!=points.end(); ++it) { mpos.insert(std::pair<int,int>(*it,i)); ++i; } for(j=0;j<nodes && ile[j];++j) { a=Receive(-1); p=ile[a]; for(i=0;i<p;++i) { from=GetInt(a); fromI=mpos[from]; dis=GetInt(a); to=GetInt(a); toI=mpos[to]; wyn[fromI*4]=toI;//l; wyn[fromI*4+2]=dis;//dl; dis=GetInt(a); to=GetInt(a); toI=mpos[to]; wyn[fromI*4+1]=toI;//p; wyn[fromI*4+3]=dis;//dp; } } //szukaj wynikow for(i=0;i<m;++i) { printf("%d\n",odp(mpos[QueryFrom(i+1)],mpos[QueryTo(i+1)])); } } return 0; }
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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | #include <stdio.h> #include <stdlib.h> #include <set> #include <map> #include "message.h" #include "kollib.h" int n,m; int node,nodes; int wyn[800*4]={0}; //l,p,dl,dp :/ int wyn_suma; std::set<int> points; std::map<int,int> mpos; int lewo(int i,int p) { int fn=FirstNeighbor(i); return fn!=p?fn:SecondNeighbor(i); } int prawo(int i,int p) { int fn=SecondNeighbor(i); return fn!=p?fn:FirstNeighbor(i); } int test2prawo(int s) { int i=0; int a,p,pp; a=p=pp=s; while(1) { ++i; pp=a; a=prawo(a,p); p=pp; if(points.find(a)!=points.end()) { PutInt(0,i); PutInt(0,a); return 1; } } return 0; } int test2lewo(int s) { int i=0; int a,p,pp; a=p=pp=s; while(1) { ++i; pp=a; a=lewo(a,p); p=pp; if(points.find(a)!=points.end()) { PutInt(0,i); PutInt(0,a); return 1; } } return 0; } int odp_prawo(int i,int p) { int fn=wyn[i*4]; if(fn!=p) { wyn_suma+=wyn[i*4+2]; return fn; } wyn_suma+=wyn[i*4+3]; return wyn[i*4+1]; } int odp(int f,int t) { if(f==t)return 0; wyn_suma=0; int a,p,pp; a=p=pp=f; while(1) { pp=a; a=odp_prawo(a,p); p=pp; if(a==t) { return n-wyn_suma>wyn_suma?wyn_suma:n-wyn_suma; } } return 0; } int main(void) { int i=0,j; int w=0,p,a; int se=0; int ile[100]={0}; int from,to,dis; int fromI,toI; n=NumberOfStudents(); m=NumberOfQueries(); if(m==0)return 0; node=MyNodeId(); nodes=NumberOfNodes(); for(i=0;i<m;++i) { points.insert(QueryFrom(i+1)); points.insert(QueryTo(i+1)); } //troche losowych srand(42); //zycie, wszechswiat i cala reszta :) for(i=0;i<35;++i) { points.insert(1+(rand()%n)); } i=0; for (std::set<int>::iterator it=points.begin(); it!=points.end(); ++it) { ile[(i%nodes)]+=1; if(node==(i%nodes)) { PutInt(0,*it);//skad start test2lewo(*it); test2prawo(*it); ++se; } ++i; } if(se)Send(0); if(!node) { i=0; for (std::set<int>::iterator it=points.begin(); it!=points.end(); ++it) { mpos.insert(std::pair<int,int>(*it,i)); ++i; } for(j=0;j<nodes && ile[j];++j) { a=Receive(-1); p=ile[a]; for(i=0;i<p;++i) { from=GetInt(a); fromI=mpos[from]; dis=GetInt(a); to=GetInt(a); toI=mpos[to]; wyn[fromI*4]=toI;//l; wyn[fromI*4+2]=dis;//dl; dis=GetInt(a); to=GetInt(a); toI=mpos[to]; wyn[fromI*4+1]=toI;//p; wyn[fromI*4+3]=dis;//dp; } } //szukaj wynikow for(i=0;i<m;++i) { printf("%d\n",odp(mpos[QueryFrom(i+1)],mpos[QueryTo(i+1)])); } } return 0; } |