結果
問題 | No.483 マッチ並べ |
ユーザー | Bantako |
提出日時 | 2018-06-18 21:33:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,411 bytes |
コンパイル時間 | 1,563 ms |
コンパイル使用メモリ | 170,264 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-30 17:04:24 |
合計ジャッジ時間 | 3,943 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | RE | - |
testcase_30 | WA | - |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | RE | - |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | AC | 2 ms
5,376 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | RE | - |
testcase_51 | WA | - |
testcase_52 | RE | - |
testcase_53 | AC | 2 ms
5,376 KB |
testcase_54 | AC | 2 ms
5,376 KB |
testcase_55 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 8 | main(){ | ^~~~
ソースコード
#include<bits/stdc++.h> #define rep(i,a,b) for(int i=int(a);i<int(b);++i) using namespace std; typedef long long ll; typedef pair<int,int> P; int INF = (1LL << 30) - 1; int MOD = 1e9+7; main(){ int field[110][110] = {}; int nodep[110][110] = {}; int N; cin >> N; int V[N][4]; rep(i,0,N){ cin >> V[i][0] >> V[i][1] >> V[i][2] >> V[i][3]; field[ V[i][0] ][ V[i][1] ]++; field[ V[i][2] ][ V[i][3] ]++; int dif = (V[i][0] - V[i][2] + 3)/2 + (V[i][1] - V[i][3] + 3)*2; nodep[ V[i][0] ][ V[i][1] ] += dif; nodep[ V[i][2] ][ V[i][3] ] += (dif&2||dif&8 ? dif/2 : dif*2); } while(1){ bool update = 0; rep(i,1,101)rep(j,1,101){ if(field[i][j] == 1){ update = 1; int dy[] = {-1,1,0,0} , dx[] = {0,0,-1,1}; int ind = (int)log2(nodep[i][j]); int np = nodep[i][j]; field[ i + dy[ind] ][ j + dx[ind] ]--; field[i][j]--; nodep[ i + dy[ind] ][ j + dx[ind] ] -= (np&2||np&8 ? np/2 : np*2); nodep[i][j] = 0; } } if(!update)break; } //最大値が3以上ならNG int maxi = 0; rep(i,1,101)rep(j,1,101){ maxi = max(maxi, field[i][j]); } if(maxi >= 3) cout << "NO" << endl; else cout << "YES" << endl; }