結果

問題 No.2037 NAND Pyramid
ユーザー milkcoffeemilkcoffee
提出日時 2022-08-12 00:39:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 1,937 bytes
コンパイル時間 4,653 ms
コンパイル使用メモリ 264,328 KB
実行使用メモリ 4,672 KB
最終ジャッジ日時 2023-10-22 05:30:09
合計ジャッジ時間 7,709 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 7 ms
4,544 KB
testcase_08 AC 6 ms
4,604 KB
testcase_09 AC 7 ms
4,348 KB
testcase_10 AC 5 ms
4,348 KB
testcase_11 AC 8 ms
4,528 KB
testcase_12 AC 4 ms
4,348 KB
testcase_13 AC 3 ms
4,348 KB
testcase_14 AC 5 ms
4,348 KB
testcase_15 AC 7 ms
4,568 KB
testcase_16 AC 5 ms
4,348 KB
testcase_17 AC 7 ms
4,672 KB
testcase_18 AC 7 ms
4,672 KB
testcase_19 AC 9 ms
4,672 KB
testcase_20 AC 9 ms
4,672 KB
testcase_21 AC 11 ms
4,672 KB
testcase_22 AC 11 ms
4,672 KB
testcase_23 AC 9 ms
4,672 KB
testcase_24 AC 10 ms
4,672 KB
testcase_25 AC 7 ms
4,672 KB
testcase_26 AC 7 ms
4,672 KB
testcase_27 AC 10 ms
4,672 KB
testcase_28 AC 8 ms
4,672 KB
testcase_29 AC 8 ms
4,672 KB
testcase_30 AC 11 ms
4,672 KB
testcase_31 AC 10 ms
4,672 KB
testcase_32 AC 9 ms
4,672 KB
testcase_33 AC 2 ms
4,348 KB
testcase_34 AC 2 ms
4,348 KB
testcase_35 AC 2 ms
4,348 KB
testcase_36 AC 2 ms
4,348 KB
testcase_37 AC 2 ms
4,348 KB
testcase_38 AC 2 ms
4,348 KB
testcase_39 AC 2 ms
4,348 KB
testcase_40 AC 2 ms
4,348 KB
testcase_41 AC 2 ms
4,348 KB
testcase_42 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
using namespace std;

/*
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
*/

#define ll long long
#define rep(i, n) for (ll i = 0; i < n; ++i)
#define rep_up(i, a, n) for (ll i = a; i < n; ++i)
#define rep_down(i, a, n) for (ll i = a; i >= n; --i)
#define P pair<ll, ll>
#define pb push_back
#define bit_count(x) __builtin_popcountll(x)
#define gcd(a,b) __gcd(a,b)
#define lcm(a,b) a / gcd(a,b) * b
#define endl "\n"

#define all(v) v.begin(), v.end()
#define fi first
#define se second
#define vvvvll vector< vector <vector <vector<ll> > > >
#define vvvll vector< vector< vector<ll> > >
#define vvll vector< vector<ll> >
#define vll vector<ll>
#define pqll priority_queue<ll>
#define pqllg priority_queue<ll, vector<ll>, greater<ll>>

template<class T> inline void vin(vector<T>& v) { rep(i, v.size()) cin >> v.at(i); }
template <class T>
using V = vector<T>;

template <typename T>
void pt(T val)
{
    cout << val << "\n";
}

//AC

ll nand(ll x, ll y){
    if(x==1&&y==1) return 0;
    else return 1;
}

void solve(){
    ll n, m, k, cnt = 0, sum = 0, ans = 0;
    cin>>n>>k;
    V<string> s(3);
    cin>>s[0];
    assert(n==s[0].size());
    assert(1<=k&&k<n&&n<=400000);
    if(n==2){
        ll x=s[0][0]-'0';
        ll y=s[0][1]-'0';
        ll z=nand(x,y);
        pt(z);
        return;
    }
    rep(i,2){
        rep(j,n-i-1){
            ll x=s[i][j]-'0';
            ll y=s[i][j+1]-'0';
            ll z=nand(x,y);
            s[i+1].pb(z+'0');
        }
    }
    ll t;
    if((n-k)%2==0) t=2;
    else t=1;
    ll idx=(n-1-k)/2;
    rep(i,k){
        cout<<s[t][idx+i];
    }
    cout<<endl;
}   

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    //cout << fixed << setprecision(16);
    //ll T;
    //cin>>T;
    //rep(ca,T)
    solve();
}   
0