#include <stdio.h> #include <stdlib.h> //typedef struct reakcja; typedef struct zawartosc; typedef struct reakcja{ int numer1; int numer2; int kolejnosc;struct reakcja* druga; short status; short czy; struct reakcja* nastepny; } reakcja; typedef struct zawartosc { int numer; struct zawartosc* nastepny; } zawartosc; typedef struct fiolka { int wartosc; struct reakcja* reakcje; struct reakcja* last_r; struct zawartosc* zawartosc; struct zawartosc* last_z; } fiolka; void* push_r(fiolka* f,reakcja* r) { //printf("Push_r: %d %d\n",f->wartosc,numer); if (f->last_r) { f->last_r->nastepny = r; f->last_r = r; } else { f->reakcje = r; f->last_r = r; } } fiolka* fiolki; int* przelewy; int liczba_fiolek; int liczba_przelewow; unsigned long long osad = 0; void wczytaj() { int liczba_reakcji; int i; int r1; int r2; scanf("%d %d %d",&liczba_fiolek,&liczba_przelewow,&liczba_reakcji); fiolki = (fiolka*) malloc(sizeof(fiolka)*liczba_fiolek); for (i=0;i<liczba_fiolek;i++) { scanf("%d",&(fiolki[i].wartosc)); fiolki[i].reakcje = 0; fiolki[i].last_r = 0; fiolki[i].zawartosc = 0; fiolki[i].last_z = 0; } przelewy = (int*) malloc(sizeof(int)*liczba_przelewow*2); for (i=0;i<liczba_przelewow;i++) { scanf("%d %d",&(przelewy[2*i]),&(przelewy[2*i+1])); } for (i=0;i<liczba_reakcji;i++) { reakcja* r = (reakcja*) malloc (sizeof(reakcja)); reakcja* ro = (reakcja*) malloc (sizeof(reakcja)); scanf("%d %d",&r1,&r2); r->numer1 = r1; r->numer2 = r2; r->kolejnosc = i;r->druga = ro; r->status = 0; r->czy = 0; ro->numer1 = r1; ro->numer2 = r2; ro->kolejnosc = i; ro->druga = r; ro->status = 0; ro->czy = 0; push_r( fiolki+r1-1,r ); push_r( fiolki+r2-1,ro ); } } void dumper(fiolka* f) { printf("Dumper\n"); reakcja* r = f->reakcje; zawartosc* z = f->zawartosc; printf("%d\n",f->wartosc); while(z) { printf("%d ",z->numer); z = z->nastepny;} printf("\n"); while(r) { printf("%d %d : %d | ",r->numer1,r->numer2,r->kolejnosc); r = r->nastepny;} printf("\n"); } void sprawdz_osad(fiolka* p2,int pk2) { reakcja* r = p2->reakcje; reakcja** r_before = &(p2->reakcje); int n1; int n2; fiolka* f1 = 0; fiolka* f2 = 0; short czyscic = 0; zawartosc* z2 = 0; zawartosc* z = p2->zawartosc; int akt_r; while (r) { if (r->status) { r = r->nastepny; continue; } if (r->czy == 0) { r = r->nastepny; continue; } z = p2->zawartosc; f1 = 0; f2 = 0;z = p2->zawartosc; n1 = r->numer1; n2 = r->numer2; if (n1 == pk2) { f1 = p2; } if (n2 == pk2) { f2 = p2; } if (f1 == 0 && f2 == 0) { while(z && (f1==0 || f2==0)) { if (z->numer == n1) { f1 = fiolki + z->numer - 1; z = z->nastepny; continue;} if (z->numer == n2) { f2 = fiolki + z->numer - 1; z = z->nastepny; continue;} z = z->nastepny; } } else if (f1==0) { while(z && f1==0) { if (z->numer == n1) { f1 = fiolki + z->numer - 1; z = z->nastepny; continue;} z = z->nastepny; } } else if (f2==0) { while(z && f2==0) { if (z->numer == n2) { f2 = fiolki + z->numer - 1; z = z->nastepny; continue;} z = z->nastepny; } } if (f1==0 || f2 == 0) { r_before = &(r->nastepny);r = r->nastepny; continue; } czyscic = 1; if (f1->wartosc > f2->wartosc) { osad += (unsigned long) 2 * f2->wartosc; f1->wartosc -= f2->wartosc; f2->wartosc = 0; } else { osad += (unsigned long) 2 * f1->wartosc; f2->wartosc -= f1->wartosc; f1->wartosc = 0; } r->druga->status = 1; /* *r_before = r->nastepny; r_before = &(r->nastepny); */ r->czy = 0; r = r->nastepny; } /* if (czyscic) { czyscic = 0; z = p2->zawartosc; z2 = p2->zawartosc; while(z) { if (fiolki[z->numer-1].wartosc == 0) { z2 = z; czyscic = 1; } else { if (czyscic) { czyscic = 0; z2->nastepny = z; } } z = z->nastepny; } p2->last_z = z2; }*/ } void przelej(int pk1, int pk2) { fiolka* p1 = fiolki + pk1 - 1; fiolka* p2 = fiolki + pk2 - 1; reakcja* r1 = p1->reakcje; reakcja* r2 = p2->reakcje; reakcja** first = &(p2->reakcje); zawartosc* nowa; nowa = (zawartosc*) malloc (sizeof(zawartosc)); nowa->nastepny = 0; nowa->numer = pk1; if (p1->zawartosc == 0) { if (p2->zawartosc == 0) { p2->zawartosc = nowa; } else { p2->last_z->nastepny = nowa; } p2->last_z = nowa; } else { p1->last_z->nastepny = nowa; p1->last_z = nowa; if (p2->zawartosc == 0) { p2->zawartosc = p1->zawartosc; } else { p2->last_z->nastepny = p1->zawartosc; } p2->last_z = p1->last_z; } MAIN: while(r2) { while(r1) { if (r1->kolejnosc > r2->kolejnosc) { break; } if (r1->kolejnosc == r2->kolejnosc) { r1->czy = 1; *first = r1; first = &(r1->nastepny); r1 = r1->nastepny; r2 = r2->nastepny; goto MAIN; } *first = r1; first = &(r1->nastepny); r1 = r1->nastepny; } *first = r2; first = &(r2->nastepny); r2 = r2->nastepny; } while(r1) { *first = r1; first = &(r1->nastepny); r1 = r1->nastepny; } sprawdz_osad(p2,pk2); } int main() { int i; wczytaj(); // for (i = 0; i < liczba_fiolek;i++) { dumper(fiolki + i); } for (i = 0; i < liczba_przelewow;i++) { przelej(przelewy[2*i],przelewy[2*i+1]); // printf("%ld %d\n",osad,i); } printf("%lld\n",osad); 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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | #include <stdio.h> #include <stdlib.h> //typedef struct reakcja; typedef struct zawartosc; typedef struct reakcja{ int numer1; int numer2; int kolejnosc;struct reakcja* druga; short status; short czy; struct reakcja* nastepny; } reakcja; typedef struct zawartosc { int numer; struct zawartosc* nastepny; } zawartosc; typedef struct fiolka { int wartosc; struct reakcja* reakcje; struct reakcja* last_r; struct zawartosc* zawartosc; struct zawartosc* last_z; } fiolka; void* push_r(fiolka* f,reakcja* r) { //printf("Push_r: %d %d\n",f->wartosc,numer); if (f->last_r) { f->last_r->nastepny = r; f->last_r = r; } else { f->reakcje = r; f->last_r = r; } } fiolka* fiolki; int* przelewy; int liczba_fiolek; int liczba_przelewow; unsigned long long osad = 0; void wczytaj() { int liczba_reakcji; int i; int r1; int r2; scanf("%d %d %d",&liczba_fiolek,&liczba_przelewow,&liczba_reakcji); fiolki = (fiolka*) malloc(sizeof(fiolka)*liczba_fiolek); for (i=0;i<liczba_fiolek;i++) { scanf("%d",&(fiolki[i].wartosc)); fiolki[i].reakcje = 0; fiolki[i].last_r = 0; fiolki[i].zawartosc = 0; fiolki[i].last_z = 0; } przelewy = (int*) malloc(sizeof(int)*liczba_przelewow*2); for (i=0;i<liczba_przelewow;i++) { scanf("%d %d",&(przelewy[2*i]),&(przelewy[2*i+1])); } for (i=0;i<liczba_reakcji;i++) { reakcja* r = (reakcja*) malloc (sizeof(reakcja)); reakcja* ro = (reakcja*) malloc (sizeof(reakcja)); scanf("%d %d",&r1,&r2); r->numer1 = r1; r->numer2 = r2; r->kolejnosc = i;r->druga = ro; r->status = 0; r->czy = 0; ro->numer1 = r1; ro->numer2 = r2; ro->kolejnosc = i; ro->druga = r; ro->status = 0; ro->czy = 0; push_r( fiolki+r1-1,r ); push_r( fiolki+r2-1,ro ); } } void dumper(fiolka* f) { printf("Dumper\n"); reakcja* r = f->reakcje; zawartosc* z = f->zawartosc; printf("%d\n",f->wartosc); while(z) { printf("%d ",z->numer); z = z->nastepny;} printf("\n"); while(r) { printf("%d %d : %d | ",r->numer1,r->numer2,r->kolejnosc); r = r->nastepny;} printf("\n"); } void sprawdz_osad(fiolka* p2,int pk2) { reakcja* r = p2->reakcje; reakcja** r_before = &(p2->reakcje); int n1; int n2; fiolka* f1 = 0; fiolka* f2 = 0; short czyscic = 0; zawartosc* z2 = 0; zawartosc* z = p2->zawartosc; int akt_r; while (r) { if (r->status) { r = r->nastepny; continue; } if (r->czy == 0) { r = r->nastepny; continue; } z = p2->zawartosc; f1 = 0; f2 = 0;z = p2->zawartosc; n1 = r->numer1; n2 = r->numer2; if (n1 == pk2) { f1 = p2; } if (n2 == pk2) { f2 = p2; } if (f1 == 0 && f2 == 0) { while(z && (f1==0 || f2==0)) { if (z->numer == n1) { f1 = fiolki + z->numer - 1; z = z->nastepny; continue;} if (z->numer == n2) { f2 = fiolki + z->numer - 1; z = z->nastepny; continue;} z = z->nastepny; } } else if (f1==0) { while(z && f1==0) { if (z->numer == n1) { f1 = fiolki + z->numer - 1; z = z->nastepny; continue;} z = z->nastepny; } } else if (f2==0) { while(z && f2==0) { if (z->numer == n2) { f2 = fiolki + z->numer - 1; z = z->nastepny; continue;} z = z->nastepny; } } if (f1==0 || f2 == 0) { r_before = &(r->nastepny);r = r->nastepny; continue; } czyscic = 1; if (f1->wartosc > f2->wartosc) { osad += (unsigned long) 2 * f2->wartosc; f1->wartosc -= f2->wartosc; f2->wartosc = 0; } else { osad += (unsigned long) 2 * f1->wartosc; f2->wartosc -= f1->wartosc; f1->wartosc = 0; } r->druga->status = 1; /* *r_before = r->nastepny; r_before = &(r->nastepny); */ r->czy = 0; r = r->nastepny; } /* if (czyscic) { czyscic = 0; z = p2->zawartosc; z2 = p2->zawartosc; while(z) { if (fiolki[z->numer-1].wartosc == 0) { z2 = z; czyscic = 1; } else { if (czyscic) { czyscic = 0; z2->nastepny = z; } } z = z->nastepny; } p2->last_z = z2; }*/ } void przelej(int pk1, int pk2) { fiolka* p1 = fiolki + pk1 - 1; fiolka* p2 = fiolki + pk2 - 1; reakcja* r1 = p1->reakcje; reakcja* r2 = p2->reakcje; reakcja** first = &(p2->reakcje); zawartosc* nowa; nowa = (zawartosc*) malloc (sizeof(zawartosc)); nowa->nastepny = 0; nowa->numer = pk1; if (p1->zawartosc == 0) { if (p2->zawartosc == 0) { p2->zawartosc = nowa; } else { p2->last_z->nastepny = nowa; } p2->last_z = nowa; } else { p1->last_z->nastepny = nowa; p1->last_z = nowa; if (p2->zawartosc == 0) { p2->zawartosc = p1->zawartosc; } else { p2->last_z->nastepny = p1->zawartosc; } p2->last_z = p1->last_z; } MAIN: while(r2) { while(r1) { if (r1->kolejnosc > r2->kolejnosc) { break; } if (r1->kolejnosc == r2->kolejnosc) { r1->czy = 1; *first = r1; first = &(r1->nastepny); r1 = r1->nastepny; r2 = r2->nastepny; goto MAIN; } *first = r1; first = &(r1->nastepny); r1 = r1->nastepny; } *first = r2; first = &(r2->nastepny); r2 = r2->nastepny; } while(r1) { *first = r1; first = &(r1->nastepny); r1 = r1->nastepny; } sprawdz_osad(p2,pk2); } int main() { int i; wczytaj(); // for (i = 0; i < liczba_fiolek;i++) { dumper(fiolki + i); } for (i = 0; i < liczba_przelewow;i++) { przelej(przelewy[2*i],przelewy[2*i+1]); // printf("%ld %d\n",osad,i); } printf("%lld\n",osad); return(0); } |