結果

問題 No.1121 Social Distancing in Cinema
ユーザー LayCurseLayCurse
提出日時 2020-07-22 21:44:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 4,487 bytes
コンパイル時間 2,951 ms
コンパイル使用メモリ 221,028 KB
実行使用メモリ 19,244 KB
最終ジャッジ日時 2023-09-04 17:03:42
合計ジャッジ時間 14,824 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
11,600 KB
testcase_01 AC 3 ms
11,792 KB
testcase_02 AC 4 ms
11,540 KB
testcase_03 AC 3 ms
11,544 KB
testcase_04 AC 3 ms
11,700 KB
testcase_05 AC 3 ms
11,536 KB
testcase_06 AC 3 ms
11,588 KB
testcase_07 AC 3 ms
11,728 KB
testcase_08 AC 3 ms
11,536 KB
testcase_09 AC 3 ms
11,608 KB
testcase_10 AC 3 ms
11,560 KB
testcase_11 AC 3 ms
11,580 KB
testcase_12 AC 4 ms
11,536 KB
testcase_13 AC 3 ms
11,588 KB
testcase_14 AC 3 ms
11,612 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 5 ms
13,728 KB
testcase_21 AC 5 ms
13,752 KB
testcase_22 AC 5 ms
13,616 KB
testcase_23 AC 4 ms
11,564 KB
testcase_24 AC 3 ms
11,536 KB
testcase_25 AC 22 ms
14,112 KB
testcase_26 AC 36 ms
14,352 KB
testcase_27 AC 3 ms
11,580 KB
testcase_28 AC 418 ms
18,984 KB
testcase_29 AC 31 ms
14,276 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 66 ms
14,404 KB
testcase_34 AC 64 ms
14,212 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 33 ms
14,032 KB
testcase_38 AC 76 ms
14,496 KB
testcase_39 AC 418 ms
19,244 KB
testcase_40 AC 17 ms
13,956 KB
testcase_41 AC 5 ms
13,808 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 3 ms
11,564 KB
testcase_48 AC 3 ms
11,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("Ofast")
#include<bits/stdc++.h>
using namespace std;
void *wmem;
char memarr[96000000];
template<class T> inline void walloc1d(T **arr, int x, void **mem = &wmem){
  static int skip[16] = {0, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1};
  (*mem) = (void*)( ((char*)(*mem)) + skip[((unsigned long long)(*mem)) & 15] );
  (*arr)=(T*)(*mem);
  (*mem)=((*arr)+x);
}
template<class T1> void sortA_L(int N, T1 a[], void *mem = wmem){
  sort(a, a+N);
}
template<class T1, class T2, class T3> void sortA_L(int N, T1 a[], T2 b[], T3 c[], void *mem = wmem){
  int i;
  pair<T1, pair<T2, T3> > *arr;
  walloc1d(&arr, N, &mem);
  for(i=(0);i<(N);i++){
    arr[i].first = a[i];
    arr[i].second.first = b[i];
    arr[i].second.second = c[i];
  }
  sort(arr, arr+N);
  for(i=(0);i<(N);i++){
    a[i] = arr[i].first;
    b[i] = arr[i].second.first;
    c[i] = arr[i].second.second;
  }
}
template<class T1, class T2, class T3, class T4> void sortA_L(int N, T1 a[], T2 b[], T3 c[], T4 d[], void *mem = wmem){
  int i;
  pair<pair<T1, T2>, pair<T3, T4> > *arr;
  walloc1d(&arr, N, &mem);
  for(i=(0);i<(N);i++){
    arr[i].first.first = a[i];
    arr[i].first.second = b[i];
    arr[i].second.first = c[i];
    arr[i].second.second = d[i];
  }
  sort(arr, arr+N);
  for(i=(0);i<(N);i++){
    a[i] = arr[i].first.first;
    b[i] = arr[i].first.second;
    c[i] = arr[i].second.first;
    d[i] = arr[i].second.second;
  }
}
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 T> inline T pow2_L(T a){
  return a*a;
}
int N;
int X[300000];
int Y[300000];
int ind[300000];
long long val[300000];
int ress;
int res[300000];
bool ok(int i, int j){
  return (pow2_L((X[i]-X[j])))+(pow2_L((Y[i]-Y[j])))>= 100;
}
int main(){
  int i;
  wmem = memarr;
  rd(N);
  {
    int Lj4PdHRW;
    for(Lj4PdHRW=(0);Lj4PdHRW<(N);Lj4PdHRW++){
      rd(X[Lj4PdHRW]);
      rd(Y[Lj4PdHRW]);
    }
  }
  for(i=(0);i<(N);i++){
    ind[i] = i;
  }
  for(i=(0);i<(N);i++){
    val[i] = X[i] + Y[i];
  }
  sortA_L(N, val, X, Y, ind);
  for(i=(0);i<(N);i++){
    int j;
    for(j=(0);j<(ress);j++){
      if(!ok(i,res[j])){
        goto xr20shxY;
      }
    }
    res[ress++] = i;
    if(ress*90 >= N){
      break;
    }
    xr20shxY:;
  }
  for(i=(0);i<(ress);i++){
    res[i] = ind[res[i]];
  }
  sortA_L(ress,res);
  wt_L(ress);
  wt_L('\n');
  {
    int a2conNHc;
    if(ress==0){
      wt_L('\n');
    }
    else{
      for(a2conNHc=(0);a2conNHc<(ress-1);a2conNHc++){
        wt_L(res[a2conNHc]+1);
        wt_L(' ');
      }
      wt_L(res[a2conNHc]+1);
      wt_L('\n');
    }
  }
  return 0;
}
// cLay varsion 20200509-1

// --- original code ---
// int N, X[3d5], Y[3d5], ind[3d5];
// ll val[3d5];
// int ress, res[3d5];
// 
// bool ok(int i, int j){
//   return (X[i]-X[j])**2 + (Y[i]-Y[j])**2 >= 100;
// }
// 
// {
//   rd(N,(X,Y)(N));
//   rep(i,N) ind[i] = i;
//   rep(i,N) val[i] = X[i] + Y[i];
//   sortA(N, val, X, Y, ind);
//   rep(i,N){
//     rep(j,ress) if(!ok(i,res[j])) break_continue;
//     res[ress++] = i;
// //    wt(X[i],Y[i]);
//     if(ress*90 >= N) break;
//   }
//   rep(i,ress) res[i] = ind[res[i]];
//   sortA(ress,res);
//   wt(ress);
//   wt(res(ress)+1);
// }
0