# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
730911 | myrcella | Ancient Machine (JOI21_ancient_machine) | C++17 | 59 ms | 8036 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
//by szh
#include<bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define pii pair<int,int>
#define pll pair<long long,long long>
#define pb push_back
#define debug(x) cerr<<#x<<"="<<x<<endl
#define pq priority_queue
#define inf 0x3f
#define rep(i,a,b) for (int i=a;i<(b);i++)
#define MP make_pair
#define SZ(x) (int(x.size()))
#define ll long long
#define mod 1000000007
#define ALL(x) x.begin(),x.end()
void inc(int &a,int b) {a=(a+b)%mod;}
void dec(int &a,int b) {a=(a-b+mod)%mod;}
int lowbit(int x) {return x&(-x);}
ll p0w(ll base,ll p) {ll ret=1;while(p>0){if (p%2ll==1ll) ret=ret*base%mod;base=base*base%mod;p/=2ll;}return ret;}
#include "Anna.h"
void Anna(int N, std::vector<char> S) {
bool ok = false;
vector <int> tmp;
ll dp[63];
rep(i,0,N) {
if (ok==false) {
if (S[i]=='X') tmp.pb(1),ok=true;
else tmp.pb(0);
}
else if (tmp.back()!=1 and S[i]=='Z' and (i+1==N or S[i+1]!='Z')) tmp.pb(1);
else tmp.pb(0);
}
while (SZ(tmp)%63!=0) tmp.pb(0);
dp[0] = 1;
dp[1] = 1, dp[2] = 2;
rep(i,3,63) dp[i] = dp[i-1] + dp[i-2];
int cur = 0;
while (cur<N) {
ll cnt = 0;
rep(i,cur,cur+63) {
if (tmp[i]==1) cnt += dp[cur+63-i-1];
}
rep(j,0,44) Send(((cnt>>j)&1));
cur += 63;
}
return;
}
//by szh
#include<bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define pii pair<int,int>
#define pll pair<long long,long long>
#define pb push_back
#define debug(x) cerr<<#x<<"="<<x<<endl
#define pq priority_queue
#define inf 0x3f
#define rep(i,a,b) for (int i=a;i<(b);i++)
#define MP make_pair
#define SZ(x) (int(x.size()))
#define ll long long
#define mod 1000000007
#define ALL(x) x.begin(),x.end()
void inc(int &a,int b) {a=(a+b)%mod;}
void dec(int &a,int b) {a=(a-b+mod)%mod;}
int lowbit(int x) {return x&(-x);}
ll p0w(ll base,ll p) {ll ret=1;while(p>0){if (p%2ll==1ll) ret=ret*base%mod;base=base*base%mod;p/=2ll;}return ret;}
#include "Bruno.h"
void Bruno(int N, int L, std::vector<int> A) {
vector <int> tmp;
ll dp[63];
dp[0] = 1;
dp[1] = 1, dp[2] = 2;
rep(i,3,63) dp[i] = dp[i-1] + dp[i-2];
int cur = 0;
while (cur<L) {
ll cnt = 0;
rep(i,cur,cur+44) if (A[i]) cnt += (1ll<<(i-cur));
rep(j,0,63) {
if (cnt>=dp[63-j-1]) {
tmp.pb(1);
cnt -= dp[63-j-1];
}
else tmp.pb(0);
}
cur += 44;
}
bool ok = false;
int pos = -1;
vector <int> hi;
rep(i,0,N) {
if (ok==false) {
if (tmp[i]==1) pos = i,ok=true;
else Remove(i);
}
else {
if (tmp[i]==1) {
while (!hi.empty()) Remove(hi.back()),hi.pop_back();
Remove(i);
}
else hi.pb(i);
}
}
while (!hi.empty()) Remove(hi.back()),hi.pop_back();
if (pos!=-1) Remove(pos);
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |