結果

問題 No.9 モンスターのレベル上げ
ユーザー TLwiegehttTLwiegehtt
提出日時 2015-07-18 05:12:05
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 4,278 ms / 5,000 ms
コード長 1,514 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 22,272 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-08 10:06:40
合計ジャッジ時間 16,533 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1,681 ms
5,376 KB
testcase_03 AC 677 ms
5,376 KB
testcase_04 AC 486 ms
5,376 KB
testcase_05 AC 277 ms
5,376 KB
testcase_06 AC 56 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 83 ms
5,376 KB
testcase_09 AC 1,334 ms
5,376 KB
testcase_10 AC 0 ms
5,376 KB
testcase_11 AC 4,278 ms
5,376 KB
testcase_12 AC 17 ms
5,376 KB
testcase_13 AC 2,422 ms
5,376 KB
testcase_14 AC 1,390 ms
5,376 KB
testcase_15 AC 1,432 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 754 ms
5,376 KB
testcase_18 AC 590 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:16:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   16 |         scanf("%d", &n);
      |         ^~~~~~~~~~~~~~~
main.c:19:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   19 |                 scanf("%d", &party[i].lv);
      |                 ^~~~~~~~~~~~~~~~~~~~~~~~~
main.c:23:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   23 |                 scanf("%d", &monster[i]);
      |                 ^~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <string.h>
#include <stdio.h>

typedef struct{
	int lv;
	int cnt;
}PARTY;

PARTY	party[1550];

int main(void){
	int i,j,k,n;
	int monster[1550];
	int minCnt = 9999999;
	
	scanf("%d", &n);
	
	for(i=0;i<n;i++){
		scanf("%d", &party[i].lv);
		party[i].cnt = 0;
	}
	for(i=0;i<n;i++){
		scanf("%d", &monster[i]);
	}
	
	for(i=0;i<n;i++){
		for(j=i+1;j<n;j++){
			if(party[i].lv > party[j].lv){
				int tmp = party[i].lv;
				party[i].lv = party[j].lv;
				party[j].lv = tmp;
			}
		}
	}
	
	
	for(i=0;i<n;i++){
		int maxCnt = 0;
		PARTY tParty[1550];
		for(j=0;j<n;j++){
			tParty[j].lv = party[j].lv;
			tParty[j].cnt=party[j].cnt;
		}
		
		for(j=0;j<n;j++){
			int mlv = monster[(i+j)%n]/2;
			tParty[0].lv += mlv;
			tParty[0].cnt += 1;
			if(maxCnt < tParty[0].cnt){
				maxCnt = tParty[0].cnt;
			}
			
			if(minCnt < maxCnt){
				break;
			}
			
			for(k=1;k<n;k++){
				if(tParty[k-1].lv > tParty[k].lv){
					int tmp = tParty[k-1].lv;
					tParty[k-1].lv = tParty[k].lv;
					tParty[k].lv = tmp;
					
					tmp = tParty[k-1].cnt;
					tParty[k-1].cnt = tParty[k].cnt;
					tParty[k].cnt = tmp;
				}else if(tParty[k-1].lv == tParty[k].lv && tParty[k-1].cnt > tParty[k].cnt){
					int tmp = tParty[k-1].lv;
					tParty[k-1].lv = tParty[k].lv;
					tParty[k].lv = tmp;
					
					tmp = tParty[k-1].cnt;
					tParty[k-1].cnt = tParty[k].cnt;
					tParty[k].cnt = tmp;
					
				}else{
					break;
				}
			}
		}
		
		if(maxCnt < minCnt){
			minCnt = maxCnt;
		}
		
	}
	
	printf("%d\n", minCnt);
	return 0;
}
0