結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | pione |
提出日時 | 2020-08-11 02:03:32 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3,621 ms / 5,000 ms |
コード長 | 1,905 bytes |
コンパイル時間 | 1,549 ms |
コンパイル使用メモリ | 170,008 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-09 05:26:35 |
合計ジャッジ時間 | 28,802 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
5,248 KB |
testcase_01 | AC | 7 ms
5,248 KB |
testcase_02 | AC | 13 ms
5,248 KB |
testcase_03 | AC | 11 ms
5,248 KB |
testcase_04 | AC | 6 ms
5,248 KB |
testcase_05 | AC | 13 ms
5,248 KB |
testcase_06 | AC | 8 ms
5,248 KB |
testcase_07 | AC | 3,211 ms
5,248 KB |
testcase_08 | AC | 3,222 ms
6,816 KB |
testcase_09 | AC | 2,206 ms
6,816 KB |
testcase_10 | AC | 2,661 ms
6,816 KB |
testcase_11 | AC | 3,455 ms
6,820 KB |
testcase_12 | AC | 14 ms
6,820 KB |
testcase_13 | AC | 3 ms
6,816 KB |
testcase_14 | AC | 3,570 ms
6,816 KB |
testcase_15 | AC | 3,621 ms
6,820 KB |
testcase_16 | AC | 11 ms
6,820 KB |
testcase_17 | AC | 792 ms
6,820 KB |
testcase_18 | AC | 3,109 ms
6,820 KB |
testcase_19 | AC | 396 ms
6,820 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:63:12: warning: iteration 524288 invokes undefined behavior [-Waggressive-loop-optimizations] 63 | if(dp[i]) ans++; | ~~~~^ main.cpp:62:16: note: within this loop 62 | for(ll i=0; i<=maxn; i++){ | ~^~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; // #define int long long #define rep(i, n) for (long long i = (long long)(0); i < (long long)(n); ++i) #define reps(i, n) for (long long i = (long long)(1); i <= (long long)(n); ++i) #define rrep(i, n) for (long long i = ((long long)(n)-1); i >= 0; i--) #define rreps(i, n) for (long long i = ((long long)(n)); i > 0; i--) #define irep(i, m, n) for (long long i = (long long)(m); i < (long long)(n); ++i) #define ireps(i, m, n) for (long long i = (long long)(m); i <= (long long)(n); ++i) #define SORT(v, n) sort(v, v + n); #define REVERSE(v, n) reverse(v, v+n); #define vsort(v) sort(v.begin(), v.end()); #define all(v) v.begin(), v.end() #define mp(n, m) make_pair(n, m); #define cout(d) cout<<d<<endl; #define coutd(d) cout<<std::setprecision(10)<<d<<endl; #define cinline(n) getline(cin,n); #define replace_all(s, b, a) replace(s.begin(),s.end(), b, a); #define PI (acos(-1)) #define FILL(v, n, x) fill(v, v + n, x); #define sz(x) long long(x.size()) using ll = long long; using vi = vector<int>; using vvi = vector<vi>; using vll = vector<ll>; using vvll = vector<vll>; using pii = pair<int, int>; using pll = pair<ll, ll>; using vs = vector<string>; using vpll = vector<pair<ll, ll>>; using vtp = vector<tuple<ll,ll,ll>>; using vb = vector<bool>; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const ll INF = 1e9+10; const ll MOD = 1e9+7; const ll LINF = 1e18; const ll maxn=1<<14+5; ll dp[maxn]; signed main() { cin.tie( 0 ); ios::sync_with_stdio( false ); ll n; cin>>n; vll a(n); rep(i,n) cin>>a[i]; dp[0]=1; rep(i,n){ for(ll j=0; (j^a[i])<=maxn; j++){ chmax(dp[j^a[i]], dp[j]); } } ll ans=0; for(ll i=0; i<=maxn; i++){ if(dp[i]) ans++; } cout<<ans<<endl; }