結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー Lay_ecLay_ec
提出日時 2014-11-17 00:08:19
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 714 bytes
コンパイル時間 814 ms
コンパイル使用メモリ 81,588 KB
実行使用メモリ 13,768 KB
最終ジャッジ日時 2025-01-01 19:54:56
合計ジャッジ時間 16,608 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
11,432 KB
testcase_01 AC 2 ms
13,768 KB
testcase_02 AC 68 ms
6,816 KB
testcase_03 AC 131 ms
6,816 KB
testcase_04 AC 162 ms
6,816 KB
testcase_05 AC 154 ms
6,816 KB
testcase_06 AC 149 ms
6,816 KB
testcase_07 AC 188 ms
6,816 KB
testcase_08 AC 187 ms
6,816 KB
testcase_09 TLE -
testcase_10 AC 137 ms
6,816 KB
testcase_11 AC 140 ms
6,820 KB
testcase_12 AC 128 ms
6,820 KB
testcase_13 AC 160 ms
6,816 KB
testcase_14 AC 166 ms
6,816 KB
testcase_15 TLE -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 73 ms
6,816 KB
testcase_19 AC 98 ms
6,820 KB
testcase_20 AC 102 ms
6,816 KB
testcase_21 AC 101 ms
6,816 KB
testcase_22 AC 67 ms
6,816 KB
testcase_23 AC 84 ms
6,820 KB
testcase_24 AC 1 ms
6,816 KB
testcase_25 AC 5 ms
6,820 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 29 ms
6,816 KB
testcase_29 AC 15 ms
6,816 KB
testcase_30 AC 5 ms
11,172 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
In file included from /usr/include/stdio.h:980,
                 from /usr/include/c++/13/cstdio:42,
                 from /usr/include/c++/13/ext/string_conversions.h:45,
                 from /usr/include/c++/13/bits/basic_string.h:4109,
                 from /usr/include/c++/13/string:54,
                 from /usr/include/c++/13/bits/locale_classes.h:40,
                 from /usr/include/c++/13/bits/ios_base.h:41,
                 from /usr/include/c++/13/ios:44,
                 from /usr/include/c++/13/ostream:40,
                 from /usr/include/c++/13/iostream:41,
                 from main.cpp:1:
In function ‘int printf(const char*, ...)’,
    inlined from ‘int main()’ at main.cpp:47:9:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:86:23: warning: ‘m’ may be used uninitialized [-Wmaybe-uninitialized]
   86 |   return __printf_chk (__USE_FORTIFY_LEVEL - 1, __fmt, __va_arg_pack ());
      |          ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
main.cpp: In function ‘int main()’:
main.cpp:31:37: note: ‘m’ was declared here
   31 |                 double l=0,r=L[n-1],m;
      |                                     ^

ソースコード

diff #

#include <iostream> 
#include <string> 
#include <vector> 
#include <cmath> 
#include <algorithm> 
#include <cstdlib> 
#include <ctime> 
#include <cstdio> 
#include <functional> 
#include <set> 
#include <sstream> 
#include <cctype>

using namespace std; 


int main(){

	long n,k;
	cin>>n;

	vector<long> L(n);

	for(long i=0;i<n;i++) cin>>L[i];
	cin>>k;

	sort(L.begin(),L.end());

	if(n>=k) cout<<L[n-k];
	else{
		double l=0,r=L[n-1],m;

		while((r-l)>1e-10){
			long num=0;

			m=(l+r)/2.0;
			for(long i=0;i<n;i++) num+=floor(L[i]/m);

//			cout<<"m="<<m<<"->"<<num<<endl;

			if(num<k) r=m;
			else{
				l=m;
			}

		}
		printf("%.16f\n",m);
	}

	return 0;
}
0