結果

問題 No.5016 Worst Mayor
ユーザー Shawn stayCShawn stayC
提出日時 2023-04-29 15:43:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 3,049 ms
コンパイル使用メモリ 204,944 KB
実行使用メモリ 24,360 KB
スコア 49,315,749
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 15:43:26
合計ジャッジ時間 10,627 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
23,400 KB
testcase_01 AC 86 ms
23,640 KB
testcase_02 AC 86 ms
23,340 KB
testcase_03 AC 90 ms
24,192 KB
testcase_04 AC 85 ms
24,024 KB
testcase_05 AC 84 ms
23,520 KB
testcase_06 AC 84 ms
23,400 KB
testcase_07 AC 85 ms
23,652 KB
testcase_08 AC 84 ms
23,772 KB
testcase_09 AC 85 ms
23,292 KB
testcase_10 AC 84 ms
23,400 KB
testcase_11 AC 85 ms
23,520 KB
testcase_12 AC 86 ms
24,228 KB
testcase_13 AC 115 ms
23,328 KB
testcase_14 AC 85 ms
24,204 KB
testcase_15 AC 88 ms
23,268 KB
testcase_16 AC 87 ms
24,204 KB
testcase_17 AC 87 ms
23,904 KB
testcase_18 AC 85 ms
24,252 KB
testcase_19 AC 87 ms
23,244 KB
testcase_20 AC 85 ms
23,688 KB
testcase_21 AC 86 ms
23,892 KB
testcase_22 AC 82 ms
23,664 KB
testcase_23 AC 88 ms
23,520 KB
testcase_24 AC 87 ms
23,292 KB
testcase_25 AC 88 ms
23,412 KB
testcase_26 AC 86 ms
23,232 KB
testcase_27 AC 87 ms
23,280 KB
testcase_28 AC 85 ms
23,280 KB
testcase_29 AC 88 ms
24,024 KB
testcase_30 AC 86 ms
24,216 KB
testcase_31 AC 87 ms
23,340 KB
testcase_32 AC 91 ms
23,280 KB
testcase_33 AC 86 ms
23,508 KB
testcase_34 AC 88 ms
24,036 KB
testcase_35 AC 86 ms
24,360 KB
testcase_36 AC 89 ms
23,352 KB
testcase_37 AC 88 ms
23,892 KB
testcase_38 AC 87 ms
23,292 KB
testcase_39 AC 87 ms
23,520 KB
testcase_40 AC 88 ms
23,892 KB
testcase_41 AC 89 ms
23,232 KB
testcase_42 AC 91 ms
23,496 KB
testcase_43 AC 90 ms
23,892 KB
testcase_44 AC 89 ms
23,652 KB
testcase_45 AC 86 ms
23,232 KB
testcase_46 AC 88 ms
23,700 KB
testcase_47 AC 87 ms
23,892 KB
testcase_48 AC 86 ms
23,652 KB
testcase_49 AC 87 ms
23,736 KB
権限があれば一括ダウンロードができます

ソースコード

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,250){
		int u,v; cin>>u>>v;
		cout<<3<<endl; //money
	}
	rep(i,0,100){
		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);
			cout<<1<<" "<<x<<" "<<y<<" "<<x+dx[d]<<" "<<y+dy[d]<<endl; //road
		}
	}
}
0