結果

問題 No.343 手抜き工事のプロ
ユーザー imulanimulan
提出日時 2016-02-12 23:06:28
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 1,000 bytes
コンパイル時間 1,222 ms
コンパイル使用メモリ 159,436 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 04:51:32
合計ジャッジ時間 2,135 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main(int, const char**)’:
main.cpp:25:27: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   25 |   for(i=1; i<n; ++i) scanf(" %d", &x[i]);
      |                      ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

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

typedef long long ll;
#define rep(i,n) for(i=0;i<n;++i)
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr)
#define mp make_pair
#define pb push_back
#define fi first
#define sc second

int ab(int p){
  return (p>0)?p:-p;
}



int main(int argc, char const *argv[]) {
  int i;

  int n,L;
  cin >>n >>L;
  vector<int> x(n);
  x[0]=0;
  for(i=1; i<n; ++i) scanf(" %d", &x[i]);

  //x[0],...x[i]の累積和
  vector<int> xsum(n);
  xsum[0]=x[0];
  rep(i,n-1) xsum[i+1]=xsum[i]+x[i+1];

  //隣接していないところがないかチェック
  bool disjoint=true;
  rep(i,n-1){
    if(ab(x[i+1]-x[i])>=L) disjoint=false;
  }

  int ans=-1;
  if(disjoint){
    ans=0;
    for(i=n-2; i>=0; --i){
      //重心
      double g = (double)(xsum[n-1]-xsum[i])/(n-1-i)+L/2.0;

      //printf("g= %lf\n", g);

      if(x[i]<g && g<x[i]+L && x[i+1]<g && g<x[i+1]+L);
      else ++ans;
    }
  }

  printf("%d\n",ans);
  return 0;
}
0