Submission #155796

#TimeUsernameProblemLanguageResultExecution timeMemory
155796georgerapeanuJOIRIS (JOI16_joiris)C++11
0 / 100
3 ms376 KiB
#include <cstdio> #include <vector> #include <cassert> #include <algorithm> using namespace std; int n,k; int a[55]; int tmp[55]; int cnt[55]; vector<pair<int,int> > op; void get_same_height_range(){ int ma = 0; for(int i = 1;i <= n;i++){ ma = max(ma,a[i]); } for(int i = 1;i <= n;i++){ while(ma - a[i] >= k){ a[i] += k; op.push_back({1,i}); } } } void do_tetris(){ int mi = a[1]; for(int i = 1;i <= n;i++){ mi = min(mi,a[i]); } for(int i = 1;i <= n;i++){ a[i] -= mi; } } int dist(int a,int b){ if(a > b){ b += k; } return b - a; } void do_bars(int x,int cnt){ for(int i = 1;i <= cnt;i++){ op.push_back({2,x}); } for(int j = x;j < x + k;j++){ a[j] += cnt; } for(int i = 1;i <= n;i++){ if(x <= i && i < x + cnt){ continue; } a[i] += 2 * k; op.push_back({1,i}); op.push_back({1,i}); } } int main(){ scanf("%d %d",&n,&k); for(int i = 1;i <= n;i++){ scanf("%d",&a[i]); } int real_h = -1; for(int h = 0;h < k;h++){ for(int i = 1;i <= n;i++){ tmp[i] = a[i] % k; } for(int i = 1;i <= n - k + 1;i++){ cnt[i] = dist(tmp[i],h); for(int j = i;j < i + k;j++){ tmp[j] += cnt[i]; tmp[j] %= k; } } bool ok = true; for(int i = 1;i <= n;i++){ if(tmp[i] != h){ ok = false; } } if(ok == true){ real_h = h; break; } } if(real_h == -1){ printf("-1\n"); return 0; } for(int i = 1;i <= n - k + 1;i++){ get_same_height_range(); do_tetris(); do_bars(i,cnt[i]); do_tetris(); } get_same_height_range(); printf("%d\n",op.size()); for(auto it:op){ printf("%d %d\n",it.first,it.second); } return 0; }

Compilation message (stderr)

joiris.cpp: In function 'int main()':
joiris.cpp:110:28: warning: format '%d' expects argument of type 'int', but argument 2 has type 'std::vector<std::pair<int, int> >::size_type {aka long unsigned int}' [-Wformat=]
     printf("%d\n",op.size());
                   ~~~~~~~~~^
joiris.cpp:66:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d %d",&n,&k);
     ~~~~~^~~~~~~~~~~~~~~
joiris.cpp:69:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d",&a[i]);
         ~~~~~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...