結果

問題 No.59 鉄道の旅
ユーザー cielciel
提出日時 2015-04-24 03:54:59
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 343 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 38,784 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-07 00:55:47
合計ジャッジ時間 6,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:18:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘std::multiset<int>::size_type’ {aka ‘long unsigned int’} [-Wformat=]
   18 |         printf("%d\n",se.size());
      |                 ~^    ~~~~~~~~~
      |                  |           |
      |                  int         std::multiset<int>::size_type {aka long unsigned int}
      |                 %ld
main.cpp:6:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%d%d",&N,&K);
      |         ~~~~~^~~~~~~~~~~~~~
main.cpp:9:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |                 scanf("%d",&n);
      |                 ~~~~~^~~~~~~~~

ソースコード

diff #

#include <set>
#include <cstdio>
int main(){
	std::multiset<int>se;
	int N,K;
	scanf("%d%d",&N,&K);
	for(int i=0;i<N;i++){
		int n;
		scanf("%d",&n);
		if(n>0){
			auto it=se.lower_bound(n);
			if(std::distance(it,se.end())<K)se.insert(n);
		}else{
			auto it=se.lower_bound(-n);
			if(*it==-n)se.erase(it);
		}
	}
	printf("%d\n",se.size());
}
0