fork download
  1. n,m[99999]; // first rule
  2. c,r[99999][2]; // other rules all have two symbols
  3.  
  4. i,s,t;
  5.  
  6. main(){
  7. for(;(m[n]=getchar())>0;n++);
  8.  
  9. for(s=0;s<n-1;s++) {
  10. for(t=s+2;t<n-1;t++)if(m[s]==m[t]&&m[s+1]==m[t+1]){
  11. // create new rule
  12. r[c][0]=m[s];
  13. r[c++][1]=m[s+1];
  14. // replace
  15. for(i=t=s;i<n-1;i++){
  16. if(m[i]==r[c-1][0]&&m[i+1]==r[c-1][1]){
  17. m[t++]=-c;
  18. i++;
  19. }else
  20. m[t++]=m[i];
  21. }
  22. n=t;
  23.  
  24. }
  25. }
  26.  
  27. for(s=-1;s<c;s++){
  28. printf("%d=",s+11);
  29. for(t=0;t<(s<0?n:2);t++){
  30. i=(s<0?m:r[s])[t];
  31. i<0?printf("%d ",10-i):printf("%c ",i);
  32. }
  33. printf("\n");
  34. }
  35.  
  36. }
Runtime error #stdin #stdout 0.01s 2848KB
stdin
abcdabcd
stdout
10=11 c d 11 c 
11=a b