滴滴xor题

include <iostream>
#include <vector>
#include <algorithm>
#include <unordered_set>
using namespace std;

int getNumberOfDistrict(vector<int>& nums)  {

    unordered_set<int> st;
    st.insert(0);
    int tmp = 0;
    int res = 0;
    for(auto num : nums) {
        tmp = tmp ^ num;
        
        if(st.find(tmp) == st.end()){
            st.insert(tmp);
        }else {
            unordered_set<int> tmpSet;
            tmpSet.insert(0);
            tmp = 0;
            swap(st, tmpSet);
            res++;
        }
    }
    return res;
}

int main() {
    int N;
    while(cin >> N) {
        vector<int> nums(N, 0);
        for(int i = 0; i < N; i++) {
            cin >> nums[i];
        }
        
        cout << getNumberOfDistrict(nums) << endl;
    }
    
    return 0;
}

全部评论
这道题题意理解了半天,实在不懂啥意思。知识水平有待提高啊
点赞 回复 分享
发布于 2017-09-10 17:12
出题水平有待提高,至少给个范例,把题意讲清楚。
点赞 回复 分享
发布于 2017-09-10 17:14

相关推荐

不愿透露姓名的神秘牛友
09-30 19:49
起名星人:蛮离谱的,直接要求转投销售
投递汇川技术等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务