結果
問題 | No.230 Splarraay スプラレェーイ |
ユーザー | eitaho |
提出日時 | 2015-06-20 00:29:53 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,356 ms / 5,000 ms |
コード長 | 1,605 bytes |
コンパイル時間 | 697 ms |
コンパイル使用メモリ | 84,736 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-07 04:30:40 |
合計ジャッジ時間 | 10,655 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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 | 7 ms
6,940 KB |
testcase_06 | AC | 65 ms
6,940 KB |
testcase_07 | AC | 9 ms
6,940 KB |
testcase_08 | AC | 30 ms
6,940 KB |
testcase_09 | AC | 607 ms
6,944 KB |
testcase_10 | AC | 1,096 ms
6,944 KB |
testcase_11 | AC | 275 ms
6,944 KB |
testcase_12 | AC | 604 ms
6,944 KB |
testcase_13 | AC | 87 ms
6,940 KB |
testcase_14 | AC | 1,356 ms
6,940 KB |
testcase_15 | AC | 1,260 ms
6,940 KB |
testcase_16 | AC | 1,205 ms
6,944 KB |
testcase_17 | AC | 1,221 ms
6,944 KB |
testcase_18 | AC | 1,007 ms
6,940 KB |
testcase_19 | AC | 487 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:66:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 66 | scanf("%d", &N); | ~~~~~^~~~~~~~~~ main.cpp:67:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 67 | scanf("%d", &Q); | ~~~~~^~~~~~~~~~ main.cpp:68:20: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 68 | rep(i, Q) scanf("%d%d%d", &X[i], &A[i], &B[i]); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <iostream> #include <sstream> #include <string> #include <vector> #include <stack> #include <queue> #include <set> #include <map> #include <algorithm> #include <cstdio> #include <cstdlib> #include <cstring> #include <cctype> #include <cmath> #include <cassert> #include <climits> #include <numeric> #include <functional> #include <time.h> #include <bitset> using namespace std; typedef long long ll; typedef pair<int, int> Pii; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define FOR(i, a, b) for (int i = (int)a; i <= (int)b; i++) template<class T> void checkmin(T &a, T b) { if (b < a) a = b; } template<class T> void checkmax(T &a, T b) { if (b > a) a = b; } const int MaxN = 100000, MaxQ = 100000; int N, Q; int X[MaxQ], A[MaxQ], B[MaxQ]; void solve() { ll scoreA = 0, scoreB = 0; bitset<MaxN> a, b, c; rep(i, Q) { c.reset(); c.flip(); int len = B[i] - A[i] + 1; c >>= (MaxN - len); c <<= A[i]; if (X[i] == 0) { int countA = (a & c).count(), countB = (b & c).count(); if (countA > countB) scoreA += countA; if (countB > countA) scoreB += countB; } else if (X[i] == 1) { a |= c; c.flip(); b &= c; } else if (X[i] == 2) { b |= c; c.flip(); a &= c; } } scoreA += a.count(); scoreB += b.count(); printf("%lld %lld\n", scoreA, scoreB); } int main() { scanf("%d", &N); scanf("%d", &Q); rep(i, Q) scanf("%d%d%d", &X[i], &A[i], &B[i]); solve(); return 0; }