結果
問題 | No.343 手抜き工事のプロ |
ユーザー | imulan |
提出日時 | 2016-02-12 23:06:28 |
言語 | C++11 (gcc 11.4.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 3 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 3 ms
6,944 KB |
testcase_21 | AC | 5 ms
6,944 KB |
testcase_22 | AC | 6 ms
6,940 KB |
testcase_23 | AC | 9 ms
6,940 KB |
testcase_24 | AC | 11 ms
6,940 KB |
testcase_25 | AC | 13 ms
6,940 KB |
testcase_26 | AC | 13 ms
6,944 KB |
コンパイルメッセージ
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]); | ~~~~~^~~~~~~~~~~~~~
ソースコード
#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; }