結果

問題 No.511 落ちゲー 〜手作業のぬくもり〜
ユーザー YukiDarumaYukiDaruma
提出日時 2017-04-28 23:55:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 826 bytes
コンパイル時間 1,752 ms
コンパイル使用メモリ 168,168 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 18:43:52
合計ジャッジ時間 9,548 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 3 ms
6,944 KB
testcase_29 AC 2,391 ms
6,944 KB
testcase_30 AC 1,988 ms
6,940 KB
testcase_31 AC 978 ms
6,940 KB
testcase_32 WA -
testcase_33 AC 35 ms
6,944 KB
testcase_34 AC 90 ms
6,944 KB
testcase_35 AC 494 ms
6,940 KB
testcase_36 AC 493 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

namespace
{
int n;
int w;
int h;
int T[ 100010 ];
int R[ 100010 ];
int a;
int b;
int x;
}

int main( int argc, char *argv[] )
{
int i;
int j;
int iA;
int iB;
int iCnt;

	// 入力
	cin >> n;
	cin >> w;
	cin >> h;

	iA = 0;
	iB = 0;
	iCnt = w;
	for( i = 0; i < n; i++ )
	{
		cin >> a;
		cin >> b;
		cin >> x;
		for( j = 0; j < a; j++ )
		{
			if( R[ j + x ] == 0 )
			{
				T[ j + x ] += b;
				if( T[ j + x ] >= h )
				{
					if( i % 2 == 0 )
					{
						iA++;
						R[ j + x ] = 1;
					}
					else
					{
						iB++;
						R[ j + x ] = 2;
					}

					iCnt--;
					if( iCnt == 0 ) break;
				}
			}
		}

		if( iCnt == 0 ) break;
	}

	// 出力
	if( iA > iB )
		cout << "A" << endl;
	else if( iA < iB )
		cout << "B" << endl;
	else
		cout << "DRAW" << endl;

	return 0;
}



0