When a team of AI agents solves a problem together and gets the answer right, an obvious question follows: which agent actually earned the win? Get the answer wrong, and the mirror-image question matters even more: who is to blame, so the system knows what to fix? This is the "credit assignment" problem, and it has quietly become one of the central obstacles to training the multi-agent systems that increasingly power agentic AI. A new paper argues the field has been solving it the hard way.

The paper, "Exact Is Easier: Credit Assignment for Cooperative LLM Agents," was posted to arXiv and surfaced around ICML 2026. It comes from a team led by Yanjun Chen and Wei Zhang at the Eastern Institute of Technology, with collaborators at the Hong Kong Polytechnic University and the Harbin Institute of Technology. Its central claim is deceptively simple: for teams of large language model agents, you can measure each agent's contribution exactly, and doing so is cheaper and more effective than the approximate methods the field inherited from classical reinforcement learning.

The trap of removing an agent

To understand why this is a big deal, start with the intuitive way to measure one agent's value: take it out of the team and see how much worse things get. The authors argue this seemingly natural move is a "methodological trap." In a cooperative LLM system, every agent reads the full running transcript of the conversation before adding its own message. Remove one agent, and you don't just subtract its contribution — you change what every downstream agent sees, forcing them to operate on unfamiliar input. The resulting drop in performance "conflates the removed agent's genuine contribution with every other agent's degradation," as the authors put it. Worse, this bias is systematic, meaning you can't sample your way out of it.

Existing methods, the paper notes, all inherit the same flawed premise from multi-agent reinforcement learning: that exact counterfactual evaluation requires "privileged environment access," and therefore must be approximated. Learned value critics accumulate estimation error over long text histories. Trajectory-level methods paper over the problem by handing every decision in an episode the same credit. Agent-removal counterfactuals introduce the distribution shift described above.

Here is the paper's key insight: in a cooperative LLM system, that premise is simply false. The interaction history is nothing but observable text — there is no hidden state, no unobservable dynamics. Any decision point can be reconstructed exactly from the transcript. That turns credit assignment "from an estimation problem into a measurement problem."

How C3 works

The method, called C3, exploits this deterministic-history property directly. At each decision point, it freezes the complete text history up to that moment, then samples several alternative actions the agent could have taken under a frozen behavior policy. Each alternative is rolled out — literally replaying the rest of the task from a restored checkpoint — and scored. A parameter-free "leave-one-out" baseline then compares each candidate action against the average of the others, yielding an unbiased, per-decision measure of how much that specific choice helped or hurt. No learned critic, no approximation.

Because the same structural property that enables exact credit also enables exact verification, the authors bundle in three diagnostic metrics — credit fidelity, within-group variance, and inter-agent influence — that they describe as the first method-agnostic auditing tool for multi-agent LLM credit assignment.

The numbers

The team tested C3 across six benchmarks — four math (MATH500, AIME 2025, CMATH, GSM8K) and two code generation (MBPP+ and MBPP-test) — using Qwen2.5, Qwen3, and Qwen2.5-Coder models in the 3-to-4-billion-parameter range, across both two-agent ("Duo": Reasoner then Actor) and three-agent ("Trio": adding a Verifier) topologies.

The most revealing experiment separates two sources of improvement. Converting a single-agent pipeline into a multi-agent one adds gains from architecture (role specialization) and from credit assignment, and the authors deliberately pull them apart. On MATH500 with Qwen3-4B, single-agent PPO scored 48.1%. Switching to a two-agent architecture with standard multi-agent PPO lifted that to 69.3% — the architecture gain. Swapping only the credit method for C3, while holding architecture fixed, pushed it to 82.8%, beating the strongest approximate baseline (MAGRPO, at 74.5%). On the hard AIME 2025 competition set, the same progression ran 1.3% to 3.3% to 7.9%. The point the authors stress is that a parameter-free method beating every parametric alternative is itself evidence that approximation was counterproductive.

C3 also cut training-token consumption by 32% through checkpoint restoration, undercutting the assumption that exactness must be expensive. As the authors summarize, "the exact solution proves simpler, cheaper, and more effective than all approximate alternatives."

Why this is the new frontier

Single agents are hitting the ceiling of what one model can do in one pass, and the industry's answer has been to wire models together into teams — reasoners, actors, verifiers, critics. But a team you cannot train is a team you cannot improve, and until now the sparse, delayed, team-level reward signal has been notoriously hard to route back to the individual agent that deserves it. C3's argument is that the LLM setting is not a harder version of the classical problem but a fundamentally easier one, because text-based interaction leaves nothing hidden. If that reframing holds, multi-agent training may progress faster than the borrowed pessimism of classical MARL suggested.

What to watch: whether exact credit assignment scales beyond 4B-parameter models and simple two- and three-agent chains to the larger, messier agent graphs used in production; whether the diagnostic metrics get adopted as a standard audit; and whether frontier labs building agent orchestration frameworks pick up the checkpoint-restoration trick. The code is public, which should accelerate all three.

"The exact solution proves simpler, cheaper, and more effective than all approximate alternatives."
- Chen et al., Study authors, 'Exact Is Easier'
82.8%
MATH500 (C3, 2-agent)
7.9%
AIME 2025 (C3)
32%
Training-token savings