# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
750102 | 2023-05-29T06:48:38 Z | MrM7md | Zalmoxis (BOI18_zalmoxis) | C++17 | 322 ms | 115692 KB |
#include <bits/stdc++.h> using namespace std; #define int long long #define endl '\n' #define F first #define S second #define pb push_back #define all(a) a.begin(),a.end() const int N=1e6; const int off=(1<<18); const int MOD = 1e9+7; vector<vector<int>>kk(N); signed main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n,k; cin >> n >> k; vector<array<int,3>> a(n); for(int i=0;i<n;i++){ cin >> a[i][0]; a[i][1]=a[i][2]=i; } vector<array<int,3>>v=a; for(int i=0;i<=29;i++){ vector<array<int,3>>t; for(int j=0;j<v.size();j++){ if(j+1<v.size()&&v[j][0]==v[j+1][0]&&v[j][0]==i){ t.pb({v[j][0]+1,v[j][1],v[j+1][2]}); j++; } else if(v[j][0]==i){ t.pb({v[j][0]+1,v[j][1],v[j][2]}); kk[v[j][2]].pb(v[j][0]); sort(all(kk[v[j][2]])); // cout<<kk.F<<endl; } else{ t.pb(v[j]); } } v=t; } int id=0; for(int i=0;i<n;i++){ cout<<a[i][0]<<' '; for(auto it:kk[i])cout<<it<<' '; } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 259 ms | 114644 KB | Output is correct |
2 | Correct | 289 ms | 115408 KB | Output is correct |
3 | Correct | 287 ms | 114928 KB | Output is correct |
4 | Correct | 283 ms | 115060 KB | Output is correct |
5 | Correct | 289 ms | 115272 KB | Output is correct |
6 | Correct | 256 ms | 113976 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 282 ms | 114896 KB | Unexpected end of file - int32 expected |
2 | Correct | 278 ms | 113976 KB | Output is correct |
3 | Incorrect | 305 ms | 115328 KB | Unexpected end of file - int32 expected |
4 | Incorrect | 315 ms | 115436 KB | Unexpected end of file - int32 expected |
5 | Incorrect | 290 ms | 115136 KB | Unexpected end of file - int32 expected |
6 | Incorrect | 301 ms | 114756 KB | Unexpected end of file - int32 expected |
7 | Incorrect | 322 ms | 115380 KB | Unexpected end of file - int32 expected |
8 | Incorrect | 301 ms | 115692 KB | Unexpected end of file - int32 expected |
9 | Incorrect | 257 ms | 104372 KB | Unexpected end of file - int32 expected |
10 | Incorrect | 122 ms | 57732 KB | Unexpected end of file - int32 expected |
11 | Incorrect | 167 ms | 71536 KB | Unexpected end of file - int32 expected |
12 | Incorrect | 14 ms | 23764 KB | Unexpected end of file - int32 expected |
13 | Incorrect | 14 ms | 23764 KB | Unexpected end of file - int32 expected |
14 | Incorrect | 15 ms | 23764 KB | Unexpected end of file - int32 expected |