結果

問題 No.782 マイナス進数
ユーザー kzyKTkzyKT
提出日時 2019-01-11 23:02:30
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 2,191 bytes
コンパイル時間 1,496 ms
コンパイル使用メモリ 171,932 KB
実行使用メモリ 56,100 KB
最終ジャッジ日時 2024-05-07 18:28:17
合計ジャッジ時間 7,272 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
15,104 KB
testcase_01 AC 52 ms
14,848 KB
testcase_02 AC 161 ms
31,576 KB
testcase_03 AC 108 ms
19,384 KB
testcase_04 AC 60 ms
14,848 KB
testcase_05 AC 90 ms
19,200 KB
testcase_06 AC 272 ms
48,532 KB
testcase_07 AC 43 ms
8,376 KB
testcase_08 AC 135 ms
26,384 KB
testcase_09 AC 302 ms
56,100 KB
testcase_10 AC 91 ms
17,536 KB
testcase_11 AC 582 ms
26,380 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define F first
#define S second
#define R cin>>
#define Z class
#define ll long long
#define ln cout<<'\n'
#define in(a) insert(a)
#define pb(a) push_back(a)
#define pd(a) printf("%.10f\n",a)
#define mem(a) memset(a,0,sizeof(a))
#define all(c) (c).begin(),(c).end()
#define iter(c) __typeof((c).begin())
#define rrep(i,n) for(ll i=(ll)(n)-1;i>=0;i--)
#define REP(i,m,n) for(ll i=(ll)(m);i<(ll)(n);i++)
#define rep(i,n) REP(i,0,n)
#define tr(it,c) for(iter(c) it=(c).begin();it!=(c).end();it++)
template<Z A>void pr(A a){cout<<a;ln;}
template<Z A,Z B>void pr(A a,B b){cout<<a<<' ';pr(b);}
template<Z A,Z B,Z C>void pr(A a,B b,C c){cout<<a<<' ';pr(b,c);}
template<Z A,Z B,Z C,Z D>void pr(A a,B b,C c,D d){cout<<a<<' ';pr(b,c,d);}
template<Z A>void PR(A a,ll n){rep(i,n){if(i)cout<<' ';cout<<a[i];}ln;}
ll check(ll n,ll m,ll x,ll y){return x>=0&&x<n&&y>=0&&y<m;}
const ll MAX=1e9+7,MAXL=1LL<<61,dx[4]={-1,0,1,0},dy[4]={0,1,0,-1};
typedef pair<int,int> P;

set<ll> s[2];
vector<ll> v[2],a;
ll T,m;

void dfs(ll k,ll x,ll t) {
  if(x) s[t].in(x);
  if(k>=v[t].size()) return;
  rep(i,abs(m)) {
    dfs(k+1,x+v[t][k]*i,t);
  }
}

void Main() {
  cin >> T >> m;
  ll x=1;
  v[0].pb(x);
  do {
    x*=m;
    if(x>=0) v[0].pb(x);
    else v[1].pb(x);
  } while(x<MAX);
  rep(i,2) dfs(0,0,i);
  s[1].in(0);
  rep(i,T) {
    R x;
    a.pb(x);
  }
  vector<ll> b;
  tr(it,s[1]) b.pb(-*it);
  sort(all(b));
  rep(i,T) {
    if(!a[i]) {
      pr(0);
      continue;
    }
    rep(j,b.size()) {
      x=a[i]+b[j];
      if(s[0].count(x)) {
        ll c[33];
        mem(c);
        ll y=b[j];
        rrep(l,v[1].size()) {
          while(y>=-v[1][l]) {
            c[l*2+1]++;
            y+=v[1][l];
          }
        }
        rrep(l,v[0].size()) {
          while(x>=v[0][l]) {
            c[l*2]++;
            x-=v[0][l];
          }
        }
        rrep(ii,33) {
          if(c[ii]) {
            string t="";
            rrep(jj,ii+1) {
              t+=(char)(c[jj]+'0');
            }
            pr(t);
            break;
          }
        }
        break;
      }
    }
  }
}

int main(){ios::sync_with_stdio(0);cin.tie(0);Main();return 0;}
0