結果

問題 No.1006 Share an Integer
ユーザー LayCurseLayCurse
提出日時 2020-03-06 21:26:07
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 3,591 bytes
コンパイル時間 2,947 ms
コンパイル使用メモリ 210,972 KB
実行使用メモリ 14,820 KB
最終ジャッジ日時 2024-04-22 04:55:03
合計ジャッジ時間 4,653 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,760 KB
testcase_01 AC 3 ms
7,760 KB
testcase_02 AC 3 ms
7,756 KB
testcase_03 AC 3 ms
7,628 KB
testcase_04 AC 3 ms
7,880 KB
testcase_05 AC 3 ms
7,760 KB
testcase_06 AC 3 ms
7,764 KB
testcase_07 AC 3 ms
7,636 KB
testcase_08 AC 2 ms
7,632 KB
testcase_09 AC 3 ms
7,760 KB
testcase_10 AC 2 ms
7,760 KB
testcase_11 AC 41 ms
12,000 KB
testcase_12 AC 93 ms
14,772 KB
testcase_13 AC 101 ms
13,916 KB
testcase_14 AC 103 ms
14,820 KB
testcase_15 AC 77 ms
14,220 KB
testcase_16 AC 30 ms
11,052 KB
testcase_17 AC 43 ms
12,232 KB
testcase_18 AC 82 ms
14,276 KB
testcase_19 AC 74 ms
14,204 KB
testcase_20 AC 89 ms
14,200 KB
testcase_21 AC 109 ms
14,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("Ofast")
#include<bits/stdc++.h>
using namespace std;
inline int my_getchar_unlocked(){
  static char buf[1048576];
  static int s = 1048576;
  static int e = 1048576;
  if(s == e && e == 1048576){
    e = fread_unlocked(buf, 1, 1048576, stdin);
    s = 0;
  }
  if(s == e){
    return EOF;
  }
  return buf[s++];
}
inline void rd(int &x){
  int k;
  int m=0;
  x=0;
  for(;;){
    k = my_getchar_unlocked();
    if(k=='-'){
      m=1;
      break;
    }
    if('0'<=k&&k<='9'){
      x=k-'0';
      break;
    }
  }
  for(;;){
    k = my_getchar_unlocked();
    if(k<'0'||k>'9'){
      break;
    }
    x=x*10+k-'0';
  }
  if(m){
    x=-x;
  }
}
struct MY_WRITER{
  char buf[1048576];
  int s;
  int e;
  MY_WRITER(){
    s = 0;
    e = 1048576;
  }
  ~MY_WRITER(){
    if(s){
      fwrite_unlocked(buf, 1, s, stdout);
    }
  }
}
;
MY_WRITER MY_WRITER_VAR;
void my_putchar_unlocked(int a){
  if(MY_WRITER_VAR.s == MY_WRITER_VAR.e){
    fwrite_unlocked(MY_WRITER_VAR.buf, 1, MY_WRITER_VAR.s, stdout);
    MY_WRITER_VAR.s = 0;
  }
  MY_WRITER_VAR.buf[MY_WRITER_VAR.s++] = a;
}
inline void wt_L(char a){
  my_putchar_unlocked(a);
}
inline void wt_L(int x){
  int s=0;
  int 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){
    my_putchar_unlocked('-');
  }
  while(s--){
    my_putchar_unlocked(f[s]+'0');
  }
}
template<class S> inline void arrInsert(const int k, int &sz, S a[], const S aval){
  int i;
  sz++;
  for(i=sz-1;i>k;i--){
    a[i] = a[i-1];
  }
  a[k] = aval;
}
template<class S, class T> inline void arrInsert(const int k, int &sz, S a[], const S aval, T b[], const T bval){
  int i;
  sz++;
  for(i=sz-1;i>k;i--){
    a[i] = a[i-1];
  }
  for(i=sz-1;i>k;i--){
    b[i] = b[i-1];
  }
  a[k] = aval;
  b[k] = bval;
}
template<class S, class T, class U> inline void arrInsert(const int k, int &sz, S a[], const S aval, T b[], const T bval, U c[], const U cval){
  int i;
  sz++;
  for(i=sz-1;i>k;i--){
    a[i] = a[i-1];
  }
  for(i=sz-1;i>k;i--){
    b[i] = b[i-1];
  }
  for(i=sz-1;i>k;i--){
    c[i] = c[i-1];
  }
  a[k] = aval;
  b[k] = bval;
  c[k] = cval;
}
template<class S, class T, class U, class V> inline void arrInsert(const int k, int &sz, S a[], const S aval, T b[], const T bval, U c[], const U cval, V d[], const V dval){
  int i;
  sz++;
  for(i=sz-1;i>k;i--){
    a[i] = a[i-1];
  }
  for(i=sz-1;i>k;i--){
    b[i] = b[i-1];
  }
  for(i=sz-1;i>k;i--){
    c[i] = c[i-1];
  }
  for(i=sz-1;i>k;i--){
    d[i] = d[i-1];
  }
  a[k] = aval;
  b[k] = bval;
  c[k] = cval;
  d[k] = dval;
}
int X;
int d[2000000+1];
int ress;
int res1[2000000];
int res2[2000000];
int opt = 1073709056;
int main(){
  int i;
  int tmp;
  rd(X);
  for(i=(1);i<(X+1);i++){
    int j;
    for(j=(i);j<(X+1);j+=(i)){
      d[j]++;
    }
  }
  for(i=(1);i<(X);i++){
    tmp = abs((i - d[i]) - (X-i - d[X-i]));
    if(tmp < opt){
      opt = tmp;
      ress = 0;
    }
    if(tmp == opt){
      arrInsert(ress, ress, res1, i, res2, X-i);
    }
  }
  for(i=(0);i<(ress);i++){
    wt_L(res1[i]);
    wt_L(' ');
    wt_L(res2[i]);
    wt_L('\n');
  }
  return 0;
}
// cLay varsion 20200303-1 [beta]

// --- original code ---
// int X, d[2d6+1];
// int ress, res1[2d6], res2[2d6], opt = int_inf;
// {
//   int tmp;
//   rd(X);
//   rep(i,1,X+1) rep(j,i,X+1,i) d[j]++;
//   rep(i,1,X){
//     tmp = abs((i - d[i]) - (X-i - d[X-i]));
//     if(tmp < opt) opt = tmp, ress = 0;
//     if(tmp == opt) arrInsert(ress, ress, res1, i, res2, X-i);
//   }
//   rep(i,ress) wt(res1[i], res2[i]);
// }
0