結果

問題 No.5016 Worst Mayor
ユーザー Shawn stayCShawn stayC
提出日時 2023-04-29 15:31:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 883 bytes
コンパイル時間 3,970 ms
コンパイル使用メモリ 204,784 KB
実行使用メモリ 37,504 KB
スコア 0
平均クエリ数 56.16
最終ジャッジ日時 2023-04-29 15:32:09
合計ジャッジ時間 9,827 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i,l,r) for(int i=(l);i<(r);++i)

vector<int> dx={-1,0,1,0};
vector<int> dy={0,1,0,-1};

bool range(int x, int y){
	if(x<0 || y<0 || x>=14 || y>=14) return true;
	return false;
}

int main(){
	int n,t; cin>>n>>t;
	vector<int> a(n),b(n),c(n),d(n);
	rep(i,0,n) cin>>a[i]>>b[i]>>c[i]>>d[i];
	
	random_device rd;
	mt19937 eng(rd());
	uniform_int_distribution<int> sd1(2,13);
	uniform_int_distribution<int> sd2(0,3);
	
	rep(i,0,200){
		int u,v; cin>>u>>v;
		cout<<3<<endl; //money
	}
	rep(i,0,150){
		int u,v; cin>>u>>v;
		cout<<2<<endl; //supporter
	}
	rep(i,0,50){
		int u,v; cin>>u>>v;
		if(u==-1) return 0;
		if(u<1e7/sqrt(v)) cout<<3<<endl; //money
		else{
			int x=sd1(eng), y=sd1(eng), d=sd2(eng);
			if(range(x+dx[d],y+dy[d])) d=sd2(eng);
			else cout<<1<<x<<y<<x+dx[d]<<y+dy[d]<<endl; //road
		}
	}
}
0