結果

問題 No.148 試験監督(3)
ユーザー LayCurseLayCurse
提出日時 2015-02-08 23:15:51
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 3,524 bytes
コンパイル時間 1,771 ms
コンパイル使用メモリ 146,536 KB
実行使用メモリ 14,572 KB
最終ジャッジ日時 2023-09-05 11:18:01
合計ジャッジ時間 6,505 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define REP(i,a,b) for(i=a;i<b;i++)
#define rep(i,n) REP(i,0,n)

#define mygc(c) (c)=getchar_unlocked()
#define mypc(c) putchar_unlocked(c)

#define ll long long
#define ull unsigned ll

void reader(int *x){int k,m=0;*x=0;for(;;){mygc(k);if(k=='-'){m=1;break;}if('0'<=k&&k<='9'){*x=k-'0';break;}}for(;;){mygc(k);if(k<'0'||k>'9')break;*x=(*x)*10+k-'0';}if(m)(*x)=-(*x);}
void reader(ll *x){int k,m=0;*x=0;for(;;){mygc(k);if(k=='-'){m=1;break;}if('0'<=k&&k<='9'){*x=k-'0';break;}}for(;;){mygc(k);if(k<'0'||k>'9')break;*x=(*x)*10+k-'0';}if(m)(*x)=-(*x);}
void reader(double *x){scanf("%lf",x);}
int reader(char c[]){int i,s=0;for(;;){mygc(i);if(i!=' '&&i!='\n'&&i!='\r'&&i!='\t'&&i!=EOF) break;}c[s++]=i;for(;;){mygc(i);if(i==' '||i=='\n'||i=='\r'||i=='\t'||i==EOF) break;c[s++]=i;}c[s]='\0';return s;}
template <class T, class S> void reader(T *x, S *y){reader(x);reader(y);}
template <class T, class S, class U> void reader(T *x, S *y, U *z){reader(x);reader(y);reader(z);}
template <class T, class S, class U, class V> void reader(T *x, S *y, U *z, V *w){reader(x);reader(y);reader(z);reader(w);}

void writer(int x, char c){int s=0,m=0;char f[10];if(x<0)m=1,x=-x;while(x)f[s++]=x%10,x/=10;if(!s)f[s++]=0;if(m)mypc('-');while(s--)mypc(f[s]+'0');mypc(c);}
void writer(ll x, char c){int s=0,m=0;char f[20];if(x<0)m=1,x=-x;while(x)f[s++]=x%10,x/=10;if(!s)f[s++]=0;if(m)mypc('-');while(s--)mypc(f[s]+'0');mypc(c);}
void writer(double x, char c){printf("%.15f",x);mypc(c);}
void writer(const char c[]){int i;for(i=0;c[i]!='\0';i++)mypc(c[i]);}
void writer(const char x[], char c){int i;for(i=0;x[i]!='\0';i++)mypc(x[i]);mypc(c);}
template<class T> void writerLn(T x){writer(x,'\n');}
template<class T, class S> void writerLn(T x, S y){writer(x,' ');writer(y,'\n');}
template<class T, class S, class U> void writerLn(T x, S y, U z){writer(x,' ');writer(y,' ');writer(z,'\n');}
template<class T> void writerArr(T x[], int n){int i;if(!n){mypc('\n');return;}rep(i,n-1)writer(x[i],' ');writer(x[n-1],'\n');}

char memarr[17000000]; void *mem = memarr;
#define MD 1000000007

const char *str = " !#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_`abcdefghijklmnopqrstuvwxyz{|}~";
// 33-126 not "\, space for minus

template<class T>
int compress(int N, T arr[], char res[]){
  int i, j, d, sz = 0;
  T x;
  static int cnv[128], fg = 0;

  if(fg==0) REP(i,33,127) if(i!='"'&&i!='\\') cnv[fg++]=i;

  rep(i,N){
    x = arr[i];
    d = 0;
    while(x) x/=46, d++;
    if(d==0) d++;

    x = arr[i];
    if(x < 0) res[sz++] = 32, x *= -1;

    rep(j,d){
      if(j) res[sz+d-1-j] = cnv[x%46];
      else  res[sz+d-1-j] = cnv[x%46+46];
      x /= 46;
    }
    sz += d;
  }

  res[sz] = '\0';
  return sz;
}

template<class T>
int extend(const char arr[], T res[]){
  int i, j, s = 1, sz = 0;
  static int cnv[128], fg = 0;

  if(fg==0) REP(i,33,127) if(i!='"'&&i!='\\') cnv[i]=fg++;

  if(arr[0]<' ') return 0;
  res[0] = 0;

  for(i=0;;i++){
    if(arr[i]<' ') break;
    if(cnv[arr[i]] < 46){
      res[sz] = res[sz]*46 + cnv[arr[i]];
    } else {
      res[sz] = res[sz]*46 + (cnv[arr[i]]-46);
      if(s==-1) res[sz] *= -1, s = 1;
      res[++sz] = 0;
    }
  }
  return sz;
}

int arr[100000];
char res[1000000];

int main(){
  int i, j, k, sz = 0;
  ll f = 1;

  rep(i,1001000000){
    if(i%500000==0) arr[sz++] = f;
    f = f*(i+1) % MD;
  }

  writerArr(arr, sz);
  
  compress(sz, arr, res);
  writerLn(res);

  sz = extend(res, arr);
  writerArr(arr, sz);

  return 0;
}
0