結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | wk1080id |
提出日時 | 2019-01-14 02:53:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 179 ms / 2,000 ms |
コード長 | 1,745 bytes |
コンパイル時間 | 680 ms |
コンパイル使用メモリ | 84,792 KB |
実行使用メモリ | 73,812 KB |
最終ジャッジ日時 | 2024-06-09 12:32:12 |
合計ジャッジ時間 | 4,077 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 179 ms
73,804 KB |
testcase_01 | AC | 179 ms
73,804 KB |
testcase_02 | AC | 173 ms
73,552 KB |
testcase_03 | AC | 170 ms
73,804 KB |
testcase_04 | AC | 177 ms
73,680 KB |
testcase_05 | AC | 159 ms
73,684 KB |
testcase_06 | AC | 133 ms
73,680 KB |
testcase_07 | AC | 134 ms
73,680 KB |
testcase_08 | AC | 109 ms
73,680 KB |
testcase_09 | AC | 105 ms
73,812 KB |
testcase_10 | AC | 100 ms
73,808 KB |
testcase_11 | AC | 102 ms
73,684 KB |
testcase_12 | AC | 96 ms
73,556 KB |
testcase_13 | AC | 97 ms
73,680 KB |
testcase_14 | AC | 99 ms
73,680 KB |
testcase_15 | AC | 91 ms
73,680 KB |
testcase_16 | AC | 116 ms
73,808 KB |
testcase_17 | AC | 137 ms
73,544 KB |
ソースコード
#include<iostream> #include<algorithm> #include<cstdio> #include<cmath> #include<cctype> #include<math.h> #include<string> #include<string.h> #include<stack> #include<queue> #include<vector> #include<utility> #include<set> #include<map> #include<stdlib.h> #include<iomanip> using namespace std; #define ll long long #define ld long double #define EPS 0.0000000001 #define INF 1e9 #define LINF (ll)INF*INF #define MOD 1000000007 #define rep(i,n) for(int i=0;i<(n);i++) #define loop(i,a,n) for(int i=a;i<(n);i++) #define all(in) in.begin(),in.end() #define shosu(x) fixed<<setprecision(x) #define int ll //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! typedef vector<int> vi; typedef vector<string> vs; typedef pair<int,int> pii; typedef vector<pii> vp; int gcd(int a, int b){ if(b==0) return a; return gcd(b,a%b); } int lcm(int a, int b){ return a*b/gcd(a,b); } int g[3000][3000] = {}; signed main(void) { int n; cin >> n; int l,r; cin >> l >> r; l += 600; r += 600; g[2999][l]--; g[2999][r+1]++; rep(i,n){ int xl,yu,xr,yd; cin >> xl >> yu >> xr >> yd; xl += 600; yu += 600; xr += 600; yd += 600; xr++; yd++; g[yu][xl] += i+1; g[yd][xl] -= i+1; g[yu][xr] -= i+1; g[yd][xr] += i+1; } rep(i,3000)rep(j,3000-1)g[i][j+1] += g[i][j]; rep(j,3000)rep(i,3000-1)g[i+1][j] += g[i][j]; vi ans(n,0); for(int i = 2998; i >= 0; i--)for(int j = 2999; j >= 0; j--)if(g[i+1][j] == -1){ if(g[i][j]){ ans[g[i][j]-1]++; }else{ g[i][j] = -1; } } rep(i,n){ if(ans[i])cout << 1 << endl; else cout << 0 << endl; } }