結果

問題 No.318 学学学学学
ユーザー piyoko_212piyoko_212
提出日時 2015-12-21 19:45:40
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 51,524 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-06-22 16:18:32
合計ジャッジ時間 3,494 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,816 KB
testcase_01 AC 12 ms
6,940 KB
testcase_02 AC 14 ms
6,940 KB
testcase_03 AC 9 ms
6,940 KB
testcase_04 AC 12 ms
6,944 KB
testcase_05 AC 72 ms
6,940 KB
testcase_06 AC 97 ms
6,944 KB
testcase_07 AC 91 ms
6,948 KB
testcase_08 AC 75 ms
6,940 KB
testcase_09 AC 74 ms
6,940 KB
testcase_10 AC 65 ms
6,944 KB
testcase_11 AC 73 ms
6,940 KB
testcase_12 AC 73 ms
6,940 KB
testcase_13 AC 64 ms
6,944 KB
testcase_14 AC 57 ms
6,940 KB
testcase_15 AC 50 ms
6,940 KB
testcase_16 AC 36 ms
6,944 KB
testcase_17 AC 60 ms
7,040 KB
testcase_18 AC 45 ms
6,940 KB
testcase_19 AC 64 ms
7,040 KB
testcase_20 AC 37 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:11:20: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         int a;scanf("%d",&a);
      |               ~~~~~^~~~~~~~~
main.cpp:13:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |                 scanf("%d",b+i);
      |                 ~~~~~^~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<algorithm>
#include<stack>
#include<set>
using namespace std;
int b[110000];
int z[110000];
int l[110000];
int r[110000];
int main(){
	int a;scanf("%d",&a);
	for(int i=0;i<a;i++){
		scanf("%d",b+i);
		z[i]=b[i];
		l[i]=r[i]=-1;
	}
	std::sort(z,z+a);
	for(int i=0;i<a;i++){
		int t=lower_bound(z,z+a,b[i])-z;
		if(l[t]==-1)l[t]=i;
	}
	for(int i=a-1;i>=0;i--){
		int t=lower_bound(z,z+a,b[i])-z;
		if(r[t]==-1)r[t]=i;
	}
	set<int>S;
	for(int i=0;i<a;i++){
		if(i)printf(" ");
		int t=lower_bound(z,z+a,b[i])-z;
		if(i==l[t]){
			S.insert(z[t]);
		}
		printf("%d",*(S.rbegin()));
		if(i==r[t])S.erase(z[t]);
	}
	printf("\n");
}
0