結果

問題 No.182 新規性の虜
ユーザー angel_p_57angel_p_57
提出日時 2016-01-17 14:53:20
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 28 ms / 5,000 ms
コード長 700 bytes
コンパイル時間 1,072 ms
コンパイル使用メモリ 23,680 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 20:11:39
合計ジャッジ時間 2,053 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 0 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 15 ms
5,248 KB
testcase_09 AC 28 ms
5,248 KB
testcase_10 AC 19 ms
5,248 KB
testcase_11 AC 18 ms
5,248 KB
testcase_12 AC 9 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 0 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 14 ms
5,248 KB
testcase_19 AC 11 ms
5,248 KB
testcase_20 AC 8 ms
5,248 KB
testcase_21 AC 17 ms
5,248 KB
testcase_22 AC 8 ms
5,248 KB
testcase_23 AC 0 ms
5,248 KB
testcase_24 AC 20 ms
5,248 KB
testcase_25 AC 9 ms
5,248 KB
testcase_26 AC 4 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
evil01.txt AC 24 ms
5,248 KB
evil02.txt AC 27 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:38:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   38 |   scanf("%d",&n);
      |   ~~~~~^~~~~~~~~
main.cpp:42:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   42 |     scanf("%d",&x);
      |     ~~~~~^~~~~~~~~

ソースコード

diff #

#include <cstdio>

using namespace std;

int a[100000];

int count(int s,int e,int b)
{
  int u1=0,u2=0,m=~(b*2-1);
  int i=s,j=e;
  while ( i<=j )
  {
    while ( i<=j&&!(a[i]&b) )
      u1|=a[i++]&m;
    while ( i<=j&& (a[j]&b) )
      u2|=a[j--]&m;
    if ( i<j )
    {
      int t=a[i];
      a[i]=a[j];
      a[j]=t;
    }
  }
  int c;
  c= j<s  ? 0 :
     j==s ? 1 :
     u1   ? count(s,j,b*2) :
            0;
  c+=i>e  ? 0 :
     i==e ? 1 :
     u2   ? count(i,e,b*2) :
            0;
  return c;
}
int main(void)
{
  int n;
  scanf("%d",&n);
  int x,i=-1,j=n;
  while ( i+1<j )
  {
    scanf("%d",&x);
    a[x&1?--j:++i]=x;
  }
  int c=count(0,i,2);
  c+=count(j,n-1,2);
  printf("%d",c);
}
0