結果

問題 No.202 1円玉投げ
ユーザー FF256grhyFF256grhy
提出日時 2015-05-04 02:10:50
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 945 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 23,552 KB
実行使用メモリ 37,632 KB
最終ジャッジ日時 2024-12-22 08:11:48
合計ジャッジ時間 2,230 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
11,520 KB
testcase_01 AC 36 ms
37,504 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 14 ms
30,848 KB
testcase_06 AC 30 ms
37,632 KB
testcase_07 AC 34 ms
37,568 KB
testcase_08 AC 32 ms
37,632 KB
testcase_09 AC 22 ms
37,632 KB
testcase_10 AC 15 ms
37,376 KB
testcase_11 AC 21 ms
37,632 KB
testcase_12 AC 23 ms
37,532 KB
testcase_13 AC 17 ms
37,504 KB
testcase_14 AC 14 ms
32,256 KB
testcase_15 AC 24 ms
37,572 KB
testcase_16 AC 28 ms
14,208 KB
testcase_17 AC 20 ms
7,296 KB
testcase_18 AC 21 ms
7,296 KB
testcase_19 AC 23 ms
37,488 KB
testcase_20 AC 30 ms
37,632 KB
testcase_21 AC 22 ms
37,504 KB
testcase_22 AC 9 ms
14,080 KB
testcase_23 AC 11 ms
14,208 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 1 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 10 ms
13,056 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 9 ms
11,904 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 19 ms
5,760 KB
testcase_36 AC 33 ms
17,408 KB
testcase_37 AC 34 ms
37,504 KB
testcase_38 AC 21 ms
5,888 KB
testcase_39 AC 4 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%d", &n);
      |         ~~~~~^~~~~~~~~~
main.cpp:12:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |                 scanf("%d %d", &x[i], &y[i]);
      |                 ~~~~~^~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

#define MAX 100000
int xlist[1003][1003][4], ylist[1003][1003][4]; // ceil(20001 / 20) + 2, 5個は入らない  // ここが盛大に間違っていた……
int num[1003][1003];

int main(void) {
	int n, x[MAX], y[MAX];
	scanf("%d", &n);
	int i, j, k, l;
	for(i = 0; i < n; i++) {
		scanf("%d %d", &x[i], &y[i]);
	}
	
	int answer = 0;
	for(i = 0; i < n; i++) {
		int xp = x[i] / 20 + 1;
		int yp = y[i] / 20 + 1;
		int flag = 0;
		for(j = xp - 1; j <= xp + 1; j++) {
		for(k = yp - 1; k <= yp + 1; k++) {
			for(l = 0; l < num[j][k]; l++) {
				if ( (x[i] - xlist[j][k][l]) * (x[i] - xlist[j][k][l]) + (y[i] - ylist[j][k][l]) * (y[i] - ylist[j][k][l]) < 400 ) {
					flag = 1;
					break;
				}
			}
		if(flag) { break; }
		}
		if(flag) { break; }
		}
		if(! flag) {
			xlist[xp][yp][ num[xp][yp] ] = x[i];
			ylist[xp][yp][ num[xp][yp] ] = y[i];
			num[xp][yp]++;
			answer++;
		}
	}
	printf("%d\n", answer);
	return 0;
}
0