#include "poszukiwania.h" #include "message.h" #include <iostream> using namespace std; const long long m=1000000021; const long long x=1000000007; inline long long MOD(long long a) { if(a%m<0) return a%m+m; return a%m; } inline long long potega(long long a, long long w) { if(w==0) return 1LL; else{ long long p=MOD(potega(a,w/2)); if(w%2==0) return MOD(p*p); else return MOD(MOD(p*p)*a); } } long long n1,n2; int nodes, number; long long po[107]; long long ha[107]; int main() { nodes=NumberOfNodes(); number=MyNodeId(); n1=SignalLength(); long long dl; if(n1%nodes==0) dl=n1/nodes; else dl=n1/nodes+1; for(int i=0; i<=nodes; i++) po[i]=min(i*dl,n1); for(int i=0; i<nodes; i++) { // if(number==0) // printf("%d %d\n",po[i],po[i+1]); } long long hasz=0; for(long long i=po[number+1]-1; i>=po[number]; i--) { long long a=SignalAt(i+1); hasz=MOD(hasz+a); hasz=MOD(hasz*x); } for(int i=0; i<nodes; i++) { PutLL(i,hasz); Send(i); } hasz=0; for(int i=0; i<nodes; i++) { int id=Receive(i); hasz=MOD(hasz+MOD(potega(x,po[i])*GetLL(id))); } //cout<<number<<" "<<hasz<<endl; //KONIEC CZ.1 n2=SeqLength(); if(n2%nodes==0) dl=n2/nodes; else dl=n2/nodes+1; for(int i=0; i<=nodes; i++) po[i]=min(i*dl,n2); long long hasz2=0; for(long long i=po[number+1]-1; i>=po[number]; i--) { long long a=SeqAt(i+1); hasz2=MOD(hasz2+a); hasz2=MOD(hasz2*x); } for(int i=0; i<nodes; i++) { PutLL(i,hasz2); Send(i); } for(int i=0; i<nodes; i++) { int id=Receive(i); ha[i]=GetLL(id); //if(number==0) //cout<<ha[i]<<endl; } int j=number; while(j>=0&&po[number+1]-po[j]<n1) j--; long long licznik=0; long long akt=0, pot=0; long long poczatek=po[number+1]-n1; if(po[number]!=po[number+1]&&poczatek>=po[j]) { for(long long i=po[j+1]-1; i>=poczatek; i--) { long long a=SeqAt(i+1); akt=MOD(akt+a); akt=MOD(akt*x); pot++; } for(int i=j+1; i<=number; i++) { akt=MOD(akt+MOD(ha[i]*potega(x,pot))); pot+=dl; } if(akt==hasz) licznik++; long long yy=MOD(potega(x,n1)); for(int i=po[number+1]-2; i>=po[number]; i--) { poczatek--; if(poczatek>=0) { int pop=SeqAt(i+2); akt=MOD(akt-MOD(pop*yy)); akt=MOD(akt+SeqAt(poczatek+1)); akt=MOD(akt*x); // cout<<poczatek<<" "<<i<<" "<<akt<<endl; if(akt==hasz) licznik++; } } } //cout<<number<<" "<<licznik<<endl; PutLL(0,licznik); Send(0); if(number==0) { long long wyn=0; for(int i=0; i<nodes; i++) { int id=Receive(i); wyn+=GetLL(id); } cout<<wyn; } 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 | #include "poszukiwania.h" #include "message.h" #include <iostream> using namespace std; const long long m=1000000021; const long long x=1000000007; inline long long MOD(long long a) { if(a%m<0) return a%m+m; return a%m; } inline long long potega(long long a, long long w) { if(w==0) return 1LL; else{ long long p=MOD(potega(a,w/2)); if(w%2==0) return MOD(p*p); else return MOD(MOD(p*p)*a); } } long long n1,n2; int nodes, number; long long po[107]; long long ha[107]; int main() { nodes=NumberOfNodes(); number=MyNodeId(); n1=SignalLength(); long long dl; if(n1%nodes==0) dl=n1/nodes; else dl=n1/nodes+1; for(int i=0; i<=nodes; i++) po[i]=min(i*dl,n1); for(int i=0; i<nodes; i++) { // if(number==0) // printf("%d %d\n",po[i],po[i+1]); } long long hasz=0; for(long long i=po[number+1]-1; i>=po[number]; i--) { long long a=SignalAt(i+1); hasz=MOD(hasz+a); hasz=MOD(hasz*x); } for(int i=0; i<nodes; i++) { PutLL(i,hasz); Send(i); } hasz=0; for(int i=0; i<nodes; i++) { int id=Receive(i); hasz=MOD(hasz+MOD(potega(x,po[i])*GetLL(id))); } //cout<<number<<" "<<hasz<<endl; //KONIEC CZ.1 n2=SeqLength(); if(n2%nodes==0) dl=n2/nodes; else dl=n2/nodes+1; for(int i=0; i<=nodes; i++) po[i]=min(i*dl,n2); long long hasz2=0; for(long long i=po[number+1]-1; i>=po[number]; i--) { long long a=SeqAt(i+1); hasz2=MOD(hasz2+a); hasz2=MOD(hasz2*x); } for(int i=0; i<nodes; i++) { PutLL(i,hasz2); Send(i); } for(int i=0; i<nodes; i++) { int id=Receive(i); ha[i]=GetLL(id); //if(number==0) //cout<<ha[i]<<endl; } int j=number; while(j>=0&&po[number+1]-po[j]<n1) j--; long long licznik=0; long long akt=0, pot=0; long long poczatek=po[number+1]-n1; if(po[number]!=po[number+1]&&poczatek>=po[j]) { for(long long i=po[j+1]-1; i>=poczatek; i--) { long long a=SeqAt(i+1); akt=MOD(akt+a); akt=MOD(akt*x); pot++; } for(int i=j+1; i<=number; i++) { akt=MOD(akt+MOD(ha[i]*potega(x,pot))); pot+=dl; } if(akt==hasz) licznik++; long long yy=MOD(potega(x,n1)); for(int i=po[number+1]-2; i>=po[number]; i--) { poczatek--; if(poczatek>=0) { int pop=SeqAt(i+2); akt=MOD(akt-MOD(pop*yy)); akt=MOD(akt+SeqAt(poczatek+1)); akt=MOD(akt*x); // cout<<poczatek<<" "<<i<<" "<<akt<<endl; if(akt==hasz) licznik++; } } } //cout<<number<<" "<<licznik<<endl; PutLL(0,licznik); Send(0); if(number==0) { long long wyn=0; for(int i=0; i<nodes; i++) { int id=Receive(i); wyn+=GetLL(id); } cout<<wyn; } return 0; } |