結果

問題 No.59 鉄道の旅
ユーザー cielciel
提出日時 2015-04-24 04:39:26
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 420 ms / 5,000 ms
コード長 395 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 38,656 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 00:56:07
合計ジャッジ時間 1,624 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 61 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 11 ms
5,376 KB
testcase_13 AC 116 ms
5,376 KB
testcase_14 AC 420 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:18:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wformat=]
   18 |         printf("%d\n",v.size());
      |                 ~^    ~~~~~~~~
      |                  |          |
      |                  int        std::vector<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 <vector>
#include <cstdio>
int main(){
	std::vector<int>v;
	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=std::lower_bound(v.begin(),v.end(),n);
			if(std::distance(it,v.end())<K)v.insert(it,n);
		}else{
			auto it=std::lower_bound(v.begin(),v.end(),-n);
			if(it!=v.end()&&*it==-n)v.erase(it);
		}
	}
	printf("%d\n",v.size());
}
0