competitive_library

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub knshnb/competitive_library

:warning: src/Helper/BitOperation.hpp

Code

// Sの部分集合の列挙
for (int T = S;; T = (T - 1) & S) {
    // 操作
    if (T == 0) break;
}
#line 1 "src/Helper/BitOperation.hpp"

// Sの部分集合の列挙
for (int T = S;; T = (T - 1) & S) {
    // 操作
    if (T == 0) break;
}
Back to top page