Submission #688417

#TimeUsernameProblemLanguageResultExecution timeMemory
688417alexddPermutation Recovery (info1cup17_permutation)C++17
43 / 100
4058 ms3752 KiB
#include<bits/stdc++.h> using namespace std; //ifstream fin("input05.in"); //#define cin fin int bucket_size; int update_timer; int n; struct bigInt { vector<int> cif; }; bigInt operator-(bigInt x, bigInt y)///return x-y { bigInt sc; bigInt newx = x; for(int i=0;i<x.cif.size();i++) { if(i<y.cif.size() && x.cif[i] >= y.cif[i]) sc.cif.push_back(x.cif[i] - y.cif[i]); else if(i>=y.cif.size()) sc.cif.push_back(x.cif[i]); else { int j=i+1; while(x.cif[j]==0) x.cif[j++]=9; x.cif[j]--; sc.cif.push_back(10+x.cif[i]-y.cif[i]); } } while(!sc.cif.empty() && sc.cif[sc.cif.size()-1]==0) sc.cif.pop_back(); x = newx; return sc; } bigInt operator+=(bigInt&x, bigInt y) { int r=0; for(int i=0;i<max(x.cif.size(), y.cif.size());i++) { if(i<x.cif.size()) r+=x.cif[i]; if(i<y.cif.size()) r+=y.cif[i]; if(i<x.cif.size()) x.cif[i]=(r%10); else x.cif.push_back(r%10); r/=10; } while(r>0) { x.cif.push_back(r%10); r/=10; } } bool operator==(bigInt x, bigInt y) { return x.cif == y.cif; } bool operator<=(bigInt x, bigInt y) { if(x.cif.size() < y.cif.size()) return 1; if(x.cif.size() > y.cif.size()) return 0; for(int i=0;i<x.cif.size();i++) { if(x.cif[i]<y.cif[i]) return 1; if(x.cif[i]>y.cif[i]) return 0; } return 1; } bigInt q[70001]; bigInt zer; bigInt unu = {{1}}; void afisare(bigInt x) { for(int i=x.cif.size()-1;i>=0;i--) cout<<x.cif[i]; } struct bucket { bigInt sum; vector<int> v; }; bucket gol; vector<bucket> buckets; void balance_buckets()///O(n) { vector<int> ramas; for(int i=0;i<buckets.size();i++) for(int j=0;j<buckets[i].v.size();j++) ramas.push_back(buckets[i].v[j]); buckets.clear(); for(int i=0;i<ramas.size();i+=bucket_size) { buckets.push_back(gol); int limit = ramas.size()-1; limit = min(limit, i+bucket_size-1); for(int j=i;j<=limit;j++) { buckets[buckets.size()-1].v.push_back(ramas[j]); buckets[buckets.size()-1].sum += q[ramas[j]]; } } } void insereaza(int b, int poz, bigInt ramas)///O(marimea bucketului in care inserez) { //buckets[b].sum += q[poz]; //return; for(int i=0;i<buckets[b].v.size();i++) { if(ramas==zer) { buckets[b].v.insert(buckets[b].v.begin()+i, poz); return; } ramas = ramas - q[buckets[b].v[i]]; } buckets[b].v.insert(buckets[b].v.end(), poz); } int rez[70001]; signed main() { //ios_base::sync_with_stdio(0);cin.tie(0); cin>>n; update_timer = 500; bucket_size = 100; buckets.push_back(gol); bigInt prec, ceva; prec = zer; string s; int procent=0; for(int i=1;i<=n;i++) { cin>>s; for(int j=s.size()-1;j>=0;j--) q[i].cif.push_back(s[j]-'0'); ceva = q[i]; q[i] = q[i] - prec; prec = ceva; bigInt aux = q[i] - unu; int unde = 0; bool bl=0; for(int j=0;j<buckets.size();j++) { unde = j; if(aux <= buckets[j].sum) { bl=1; break; } aux = aux - buckets[j].sum; } insereaza(unde, i, aux); if(i<n && i%update_timer==0) { //balance_buckets(); } } //return 0; int cate=0; for(int i=0;i<buckets.size();i++) { for(int j=0;j<buckets[i].v.size();j++) { cate++; rez[buckets[i].v[j]]=cate; } } for(int i=1;i<=n;i++) cout<<rez[i]<<" "; return 0; }

Compilation message (stderr)

permutation.cpp: In function 'bigInt operator-(bigInt, bigInt)':
permutation.cpp:18:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   18 |     for(int i=0;i<x.cif.size();i++)
      |                 ~^~~~~~~~~~~~~
permutation.cpp:20:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   20 |         if(i<y.cif.size() && x.cif[i] >= y.cif[i])
      |            ~^~~~~~~~~~~~~
permutation.cpp:22:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   22 |         else if(i>=y.cif.size())
      |                 ~^~~~~~~~~~~~~~
permutation.cpp: In function 'bigInt operator+=(bigInt&, bigInt)':
permutation.cpp:41:18: warning: comparison of integer expressions of different signedness: 'int' and 'const long unsigned int' [-Wsign-compare]
   41 |     for(int i=0;i<max(x.cif.size(), y.cif.size());i++)
      |                 ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
permutation.cpp:43:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   43 |         if(i<x.cif.size())
      |            ~^~~~~~~~~~~~~
permutation.cpp:45:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   45 |         if(i<y.cif.size())
      |            ~^~~~~~~~~~~~~
permutation.cpp:47:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   47 |         if(i<x.cif.size())
      |            ~^~~~~~~~~~~~~
permutation.cpp:58:1: warning: no return statement in function returning non-void [-Wreturn-type]
   58 | }
      | ^
permutation.cpp: In function 'bool operator<=(bigInt, bigInt)':
permutation.cpp:69:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   69 |     for(int i=0;i<x.cif.size();i++)
      |                 ~^~~~~~~~~~~~~
permutation.cpp: In function 'void balance_buckets()':
permutation.cpp:99:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<bucket>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   99 |     for(int i=0;i<buckets.size();i++)
      |                 ~^~~~~~~~~~~~~~~
permutation.cpp:100:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  100 |         for(int j=0;j<buckets[i].v.size();j++)
      |                     ~^~~~~~~~~~~~~~~~~~~~
permutation.cpp:103:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  103 |     for(int i=0;i<ramas.size();i+=bucket_size)
      |                 ~^~~~~~~~~~~~~
permutation.cpp: In function 'void insereaza(int, int, bigInt)':
permutation.cpp:120:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  120 |     for(int i=0;i<buckets[b].v.size();i++)
      |                 ~^~~~~~~~~~~~~~~~~~~~
permutation.cpp: In function 'int main()':
permutation.cpp:159:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<bucket>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  159 |         for(int j=0;j<buckets.size();j++)
      |                     ~^~~~~~~~~~~~~~~
permutation.cpp:158:14: warning: variable 'bl' set but not used [-Wunused-but-set-variable]
  158 |         bool bl=0;
      |              ^~
permutation.cpp:179:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<bucket>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  179 |     for(int i=0;i<buckets.size();i++)
      |                 ~^~~~~~~~~~~~~~~
permutation.cpp:181:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  181 |         for(int j=0;j<buckets[i].v.size();j++)
      |                     ~^~~~~~~~~~~~~~~~~~~~
permutation.cpp:146:9: warning: unused variable 'procent' [-Wunused-variable]
  146 |     int procent=0;
      |         ^~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...