#include"cielib.h" #include<bits/stdc++.h> #define FOR(i,s,e) for(int i=(s);i<=(e);i++) #define FORD(i,s,e) for(int i=(s);i>=(e);i--) #define FOREACH(i,c) for( __typeof((c).begin()) i=(c).begin();i!=(c).end();++i) #define ALL(k) (k).begin(),(k).end() #define e1 first #define e2 second #define mp make_pair #define pb push_back #define eb emplace_back using namespace std; typedef long long LL; typedef pair<int,int> PII; typedef pair<LL,LL> PLL; const bool print=false; const int MAXN=1111; /*int D00,K00,R00; int podajD(){ int a=1+rand()%500;//scanf("%d",&a); D00=a;return a; } int podajK(){ int a=D00*100;//scanf("%d",&a); K00=a; return a; } int podajR(){ int a=(int)1e9;//scanf("%d",&a); R00=a; return a; } int wz[MAXN]; int obt[MAXN]; void czytajpoz(int D){ FOR(i,0,D00-1) { wz[i]=rand()%(R00+1); //scanf("%d",&wz[i]); obt[i]=wz[i]; } } int zli=0; int czyCieplo(int pozycja[]){ int sta=0,nw=0; zli++; FOR(i,0,D00-1){ sta=max(sta,abs(obt[i]-wz[i])); nw=max(nw,abs(pozycja[i]-wz[i])); obt[i]=pozycja[i]; } if(nw<sta) return 1; return 0; } bool okej=true; void znalazlem(int t[]){ //printf("%d\n",zli); okej=false; if(zli>K00) {puts("NIE");return;} zli=0; FOR(i,0,D00-1) if(t[i]!=wz[i]){puts("NIE");return;} okej=true; puts("TAK"); }*/ int t[MAXN]; const bool print2=false; main(){ int ob=0; int test=1; while(test--){ ob++; int d=podajD(), k=podajK(); int r=podajR(); k++; if(print2)printf("TEST %d %d %d %d\n",ob,d,r,k); //czytajpoz(d); priority_queue<pair<PII,int> >Q; FOR(i,0,d-1) Q.emplace(mp(r,0),i),t[i]=r/2; czyCieplo(t); while(!Q.empty()){ PII lim=mp(Q.top().e1.e2,Q.top().e1.e1+Q.top().e1.e2);int v=Q.top().e2; int len=Q.top().e1.e1; Q.pop(); int sr=(lim.e1+lim.e2)/2; if(len>=2){ t[v]=lim.e2; czyCieplo(t); if(print){ printf("ZAP A %d:: %d %d %d\n",v,lim.e1,sr,lim.e2); FOR(i,0,d-1) printf("%d ",t[i]); puts(""); //FOR(i,0,d-1) printf("%d ",wz[i]); puts(""); } t[v]=lim.e1; if(czyCieplo(t)==0){ if(false){ t[v]=(sr+1+lim.e2)/2; if(print) printf("A1 %d\n",t[v]); //czyCieplo(t); if(sr+1==lim.e2) continue; Q.emplace(mp(lim.e2-sr-1,sr+1),v); } else{ t[v]=(sr+lim.e2)/2; if(print) printf("A2 %d\n",t[v]); Q.emplace(mp(lim.e2-sr,sr),v); } } else{ t[v]=(lim.e1+sr)/2; if(print) printf("BB %d\n",t[v]); //czyCieplo(t); if(lim.e1==sr) continue; Q.emplace(mp(sr-lim.e1,lim.e1),v); } } else if(len<2){ if(print){ printf("ZAP C %d:: %d %d %d\n",v,lim.e1,sr,lim.e2); FOR(i,0,d-1) printf("%d ",t[i]); puts(""); //FOR(i,0,d-1) printf("%d ",wz[i]); puts(""); } t[v]=lim.e1;czyCieplo(t); t[v]=lim.e2;if(czyCieplo(t)){ if(print)puts("C1"); continue; } t[v]=lim.e1;if(czyCieplo(t)) { if(print)puts("C2"); continue; } if(lim.e1==0){ t[v]=lim.e2+1;czyCieplo(t); t[v]=lim.e2; if(print)puts("D1"); if(czyCieplo(t)) t[v]=lim.e1; else t[v]=lim.e2; } else{ t[v]=lim.e1-1;czyCieplo(t); t[v]=lim.e1; if(print)puts("D2"); if(czyCieplo(t)) t[v]=lim.e2; else t[v]=lim.e1; } } } znalazlem(t); //if(print)FOR(i,0,D00-1) printf("%d %d\n",wz[i],t[i]); } }
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 | #include"cielib.h" #include<bits/stdc++.h> #define FOR(i,s,e) for(int i=(s);i<=(e);i++) #define FORD(i,s,e) for(int i=(s);i>=(e);i--) #define FOREACH(i,c) for( __typeof((c).begin()) i=(c).begin();i!=(c).end();++i) #define ALL(k) (k).begin(),(k).end() #define e1 first #define e2 second #define mp make_pair #define pb push_back #define eb emplace_back using namespace std; typedef long long LL; typedef pair<int,int> PII; typedef pair<LL,LL> PLL; const bool print=false; const int MAXN=1111; /*int D00,K00,R00; int podajD(){ int a=1+rand()%500;//scanf("%d",&a); D00=a;return a; } int podajK(){ int a=D00*100;//scanf("%d",&a); K00=a; return a; } int podajR(){ int a=(int)1e9;//scanf("%d",&a); R00=a; return a; } int wz[MAXN]; int obt[MAXN]; void czytajpoz(int D){ FOR(i,0,D00-1) { wz[i]=rand()%(R00+1); //scanf("%d",&wz[i]); obt[i]=wz[i]; } } int zli=0; int czyCieplo(int pozycja[]){ int sta=0,nw=0; zli++; FOR(i,0,D00-1){ sta=max(sta,abs(obt[i]-wz[i])); nw=max(nw,abs(pozycja[i]-wz[i])); obt[i]=pozycja[i]; } if(nw<sta) return 1; return 0; } bool okej=true; void znalazlem(int t[]){ //printf("%d\n",zli); okej=false; if(zli>K00) {puts("NIE");return;} zli=0; FOR(i,0,D00-1) if(t[i]!=wz[i]){puts("NIE");return;} okej=true; puts("TAK"); }*/ int t[MAXN]; const bool print2=false; main(){ int ob=0; int test=1; while(test--){ ob++; int d=podajD(), k=podajK(); int r=podajR(); k++; if(print2)printf("TEST %d %d %d %d\n",ob,d,r,k); //czytajpoz(d); priority_queue<pair<PII,int> >Q; FOR(i,0,d-1) Q.emplace(mp(r,0),i),t[i]=r/2; czyCieplo(t); while(!Q.empty()){ PII lim=mp(Q.top().e1.e2,Q.top().e1.e1+Q.top().e1.e2);int v=Q.top().e2; int len=Q.top().e1.e1; Q.pop(); int sr=(lim.e1+lim.e2)/2; if(len>=2){ t[v]=lim.e2; czyCieplo(t); if(print){ printf("ZAP A %d:: %d %d %d\n",v,lim.e1,sr,lim.e2); FOR(i,0,d-1) printf("%d ",t[i]); puts(""); //FOR(i,0,d-1) printf("%d ",wz[i]); puts(""); } t[v]=lim.e1; if(czyCieplo(t)==0){ if(false){ t[v]=(sr+1+lim.e2)/2; if(print) printf("A1 %d\n",t[v]); //czyCieplo(t); if(sr+1==lim.e2) continue; Q.emplace(mp(lim.e2-sr-1,sr+1),v); } else{ t[v]=(sr+lim.e2)/2; if(print) printf("A2 %d\n",t[v]); Q.emplace(mp(lim.e2-sr,sr),v); } } else{ t[v]=(lim.e1+sr)/2; if(print) printf("BB %d\n",t[v]); //czyCieplo(t); if(lim.e1==sr) continue; Q.emplace(mp(sr-lim.e1,lim.e1),v); } } else if(len<2){ if(print){ printf("ZAP C %d:: %d %d %d\n",v,lim.e1,sr,lim.e2); FOR(i,0,d-1) printf("%d ",t[i]); puts(""); //FOR(i,0,d-1) printf("%d ",wz[i]); puts(""); } t[v]=lim.e1;czyCieplo(t); t[v]=lim.e2;if(czyCieplo(t)){ if(print)puts("C1"); continue; } t[v]=lim.e1;if(czyCieplo(t)) { if(print)puts("C2"); continue; } if(lim.e1==0){ t[v]=lim.e2+1;czyCieplo(t); t[v]=lim.e2; if(print)puts("D1"); if(czyCieplo(t)) t[v]=lim.e1; else t[v]=lim.e2; } else{ t[v]=lim.e1-1;czyCieplo(t); t[v]=lim.e1; if(print)puts("D2"); if(czyCieplo(t)) t[v]=lim.e2; else t[v]=lim.e1; } } } znalazlem(t); //if(print)FOR(i,0,D00-1) printf("%d %d\n",wz[i],t[i]); } } |