結果

問題 No.59 鉄道の旅
ユーザー cielciel
提出日時 2015-04-24 04:38:18
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 382 bytes
コンパイル時間 711 ms
コンパイル使用メモリ 38,612 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 00:55:58
合計ジャッジ時間 2,365 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 RE -
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 RE -
testcase_08 AC 5 ms
5,376 KB
testcase_09 RE -
testcase_10 RE -
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 422 ms
5,376 KB
testcase_15 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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==-n)v.erase(it);
		}
	}
	printf("%d\n",v.size());
}
0